How can I change color of Push Button in Simulink GUI or add a picture?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a push button in Simulink GUI, but I can't change its color. When I try to set the background or foreground colors from the properties menu, it doesn't display on the button - it still stays white.
Is there a way to do it programmatically? I tried using the MATLAB GUI push button options, but that approach doesn't work with Simulink.
Or is there a way to add a picture in the button instead of only text?
0 commentaires
Réponses (1)
Gouri Chennuru
le 12 Août 2020
Hi Diana,
Yes, You can update the background color by using the set function which is used to set all the graphics object properties.
You can set the background color to the push button in this manner,
set(Objectname,'BackgroundColor',[0,0,0]);
You can also set the background image to the push button using set function as follows,
set(Objectname, 'CData', bg_image);
Hope this Helps!
1 commentaire
Voir également
Catégories
En savoir plus sur Interactive Model Editing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!