AppDesigner UIPanel Hide Visibility
24 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ian Hersom
el 13 de Ag. de 2016
Comentada: Johannes Rebling
el 25 de En. de 2020
I have several overlapping UIPanel's in AppDesigner and I want all but one panel to be hidden upon creation of the figure or soon thereafter. AppDesigner doesn't let you edit the constructor for the object and there is no property in the Component Browser for me to edit visibility. There is a .Visible property contained under app.panel.Visible that I believe can be set. Just can't figure out how to initialize this setting automatically without access to the constructor or the app creation.
0 comentarios
Respuesta aceptada
Swathik Kurella Janardhan
el 16 de Ag. de 2016
You can edit the startupFcn in the 'Code View' of your AppDesigner to set the Visible property of the panel.
function startupFcn(app)
app.Panel.Visible = 'off';
end
Más respuestas (1)
yumeng Jiang
el 30 de Oct. de 2019
excuse me ,how to make several overlapping UIPanel's in AppDesigner?? when i drag button or listbox or ...,they always change their parent,they run to the last panel ,thx
1 comentario
Johannes Rebling
el 25 de En. de 2020
You have to create individual apps if you want independent, overlapping windows.
Ver también
Categorías
Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!