How can I disable all of the objects in a UIBUTTONGROUP or UIPANEL at the same time?
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 27 Juin 2009
Modifié(e) : MathWorks Support Team
le 6 Déc 2024
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?
Réponse acceptée
MathWorks Support Team
le 27 Juin 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 commentaire
Eric Sargent
le 9 Déc 2020
Modifié(e) : MathWorks Support Team
le 23 Fév 2022
As of R2020b ButtonGroup and Panel both support Enable when the button group or panel is parented to a uifigure.
Plus de réponses (2)
Eric Sargent
le 9 Déc 2020
Modifié(e) : MathWorks Support Team
le 6 Déc 2024
As of R2020b ButtonGroup and Panel both support Enable when the button group or panel is parented to a uifigure.
0 commentaires
Wagih Abu Rowin
le 25 Oct 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 commentaires
Voir également
Catégories
En savoir plus sur Develop uifigure-Based Apps dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!