필터 지우기
필터 지우기

How to disable click effect of a button in App designer

조회 수: 6 (최근 30일)
Victor
Victor 2024년 4월 6일
답변: Poorna 2024년 4월 6일
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

답변 (1개)

Poorna
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!

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by