How can I disable all of the objects in a UIBUTTONGROUP or UIPANEL at the same time?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 27 de Jun. de 2009
Editada: MathWorks Support Team
el 23 de Feb. de 2022
I would like to disable all of the objects located inside one of the container objects (UIPANEL and UIBUTTONGROUP). Is there a property of the container that does this?
Respuesta aceptada
MathWorks Support Team
el 27 de Jun. de 2009
The container objects do not have a property that can disable all of its children. However, you can obtain the container's children, and then modify their Enable properties with a single command:
% Here 'c' is the handle to a container object
children = get(c,'Children');
set(children,'Enable','inactive');
1 comentario
Eric Sargent
el 9 de Dic. de 2020
Editada: MathWorks Support Team
el 23 de Feb. de 2022
As of R2020b ButtonGroup and Panel both support Enable when the button group or panel is parented to a uifigure.
Más respuestas (2)
Eric Sargent
el 9 de Dic. de 2020
Editada: MathWorks Support Team
el 23 de Feb. de 2022
As of R2020b ButtonGroup and Panel both support Enable when the button group or panel is parented to a uifigure.
0 comentarios
Wagih Abu Rowin
el 25 de Oct. de 2020
For Matlab App Designer 2018 and up you should use 'Enable','off' as:
% Here app.UIFigure is the main handel or container object
children = get(app.UIFigure,'Children');
set(children(isprop(children,'Enable')),'Enable','off')
0 comentarios
Ver también
Categorías
Más información sobre Develop uifigure-Based Apps en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!