필터 지우기
필터 지우기

How to change the border color of a pushbutton in guide

조회 수: 8 (최근 30일)
Gopichandh Danala
Gopichandh Danala 2019년 11월 3일
댓글: Walter Roberson 2019년 11월 3일
I am trying to see if I can add a color to the border of a pushbutton.
I checked some undocumented matlab and found this: link
jEdit = findjobj(handles.open) ; % handles.open -- pushbutton name - open
lineColor = java.awt.Color(1,0,0); % =red
thickness = 3; % pixels
roundedCorners = true;
newBorder = javax.swing.border.LineBorder(lineColor,thickness,roundedCorners);
jEdit.Border = newBorder;
jEdit.repaint; % redraw the modified control
This works for edit textbox but not for pushbutton.
I went through a similar question: Here. It shows that buttons border style is not affected after changing anything from default setting.
Any help is great.
  댓글 수: 3
Gopichandh Danala
Gopichandh Danala 2019년 11월 3일
dropping the button to uipanel works using the 'ShadowColor '. Thanks.
But if I have to do this for all pushbuttons with a specific bordercolor it becomes more tedious.
Is this the only way for now?
Walter Roberson
Walter Roberson 2019년 11월 3일
Perhaps you could hook in to DefaultUicontrolCreateFcn ?

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by