Change background color in pushbutton [Matlab-GUI]
Afficher commentaires plus anciens
Hi! I need change color of pushbutton when I choose this pushbutton. For example, I select pushbutton1(radiobutton1) and its color changes to green. In same way, color of others pushbutton changes to red. I have 80 pushbuttons, is there any way to make this change at once through a cycle or do I have to write these lines of code for all of them?
case 'radiobutton1'
set(handles.pushbutton1,'BackgroundColor','green');
set(handles.pushbutton2,'BackgroundColor','red');
set(handles.pushbutton3,'BackgroundColor','red');
....
Réponse acceptée
Plus de réponses (1)
The default pushbutton background color is the window's two-shade-of-gray as shown in the attached pic. I would like to keep this two shades with other colors (e.g. green/light green) that I pick using the BackgroundColor property. How do I do it?
edit: For some reason the picture is not attached, but I'm sure you know what I'm talking about...
Catégories
En savoir plus sur Interactive Control and Callbacks dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!