Creating Buttons Tabs and Panels from Input Number

4 次查看(过去 30 天)
Here is an example of my Code that keeps returning the error " 'Parent' must be a parent component, such as a uifigure object. This is all done in Designer.
___________________________________________________________________________________________________________________________
X= 3
app.UIFigure = uifigure;
app.TabGroup = uitabgroup(app.UIFigure)
for i=1:X
app.Tab(i) = uitab(app.TabGroup)
app.Panel(i) = uipanel(app.Tab(i))
app.Button(i) = uibutton(app.Panel(i))
end
_____________________________________________________________________________________________________________________________
Once it gets to app.Button the error occurs. Lets say X = 3, I do get 3 Tabs and 3 Panels (1 in each Tab) but it is unable to create the 1 Button in each Panel.
Thanks

回答(1 个)

Reshma Nerella
Reshma Nerella 2021-6-18
Hi,
You can do it this way.
  1. Create a private property allComps, use it as a structure to hold arrays for tabs, panels and buttons
  2. Create an EditField for the input number
Use the below code for creating tabs,panels and buttons.
app.allComps.tabG = uitabgroup(app.UIFigure);
for i = 1:app.EditField.Value
app.allComps.tabs(i) = uitab(app.allComps.tabG,'Title', "tab"+i);
app.allComps.panels(i) = uipanel(app.allComps.tabs(i));
app.allComps.buttons(i) = uibutton(app.allComps.panels(i),'Text',"button"+i);
end
Hope this helps!
  1 个评论
McLain Cowan
McLain Cowan 2021-6-29
This does not work... This is what I am trying to do currently. I am trying to put buttons onto multiple tabs:

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Develop uifigure-Based Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by