How can I disable all of the objects in a "uibuttongroup" or "uipanel" at the same time?

6 vues (au cours des 30 derniers jours)
I would like to disable all of the objects located inside one of the container objects (uibuttongroup and uipanel). Is there a property of the container that does this?

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 10 Déc 2021
Modifié(e) : MathWorks Support Team le 3 Mar 2025
As of R2020b onwards, both "uibuttongroup" and "uipanel" components support the Enable property when they are parented to a "uifigure". Refer to the ButtonGroup documentation to learn more about this. 
For releases before R2020b:
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
Eric Sargent le 9 Déc 2020
Modifié(e) : MathWorks Support Team le 30 Juin 2025
As of R2020b ButtonGroup and Panel both support Enable when the button group or panel is parented to a uifigure.

Connectez-vous pour commenter.

Plus de réponses (2)

Eric Sargent
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.

Wagih Abu Rowin
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')

Catégories

En savoir plus sur App Building 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!

Translated by