How to disable click effect of a button in App designer
4 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(1 个)
Poorna
2024-4-6
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!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!