How to disable click effect of a button in App designer

6 visualizzazioni (ultimi 30 giorni)
When I place a button in App desiner, the button looks like this:
But when I click the button, there seems to be a clicked effect on the button (the blue color around the button):
May I ask if there a way to disable this clicked effect with a code or setting, so that whenever I clicked, the button just stay gray like the first image? Thanks very much if anyone can help me :D

Risposte (1)

Poorna
Poorna il 6 Apr 2024
Hi Victor,
I see that the "uibutton" that you are using is continued in a clicked state after you press the button. I believe the reason for this could be that you might be setting the style property of the button to "state" instead of "push". An uibutton created with style property set to "state" will continue to retain its clicked state even after releasing the click of the mouse. While a uibutton created with the style property set to "push" will return back to its normal state after the click is released. You could create a uibutton of style "push" as below:
fig = uifigure;
b = uibutton(fig);
To know more about the uibutton and it's "style" property refer to the following documentation:
Hope this Helps!

Categorie

Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by