Effacer les filtres
Effacer les filtres

Is there an easier way to disable all the buttons in matlab app designer?

60 vues (au cours des 30 derniers jours)
Namita Gera
Namita Gera le 15 Avr 2022
Commenté : Matt J le 3 Juin 2022
I wanted to know if there is an easier way to disable or enable all the buttons without calling each one separately. I was hoping to be able to press a start button which would then enable all the buttons in the app.
app.Button_1.Enable = "off";
app.Button_2.Enable = "off";
app.Button_3.Enable = "off";
app.Button_4.Enable = "off";
app.Button_5.Enable = "off";
app.Button_6.Enable = "off";
app.Button_7.Enable = "off";
app.Button_8.Enable = "off";
app.Button_9.Enable = "off";

Réponses (1)

Matt J
Matt J le 15 Avr 2022
Modifié(e) : Matt J le 15 Avr 2022
h= findobj(app.UIFigure,'Type','uibutton');
set(h,'Enable','off')
  4 commentaires
Matt J
Matt J le 3 Juin 2022
@Gert Persson's comment moved here:
Yes, this will work fine for me!
Thanks a lot for your help Matt!
Matt J
Matt J le 3 Juin 2022
You're welcome, but please Accept-click the answer to indicate that it helped.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Downloads 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