In Guide, How to add border
이전 댓글 표시
In static text, how to add border line
Like this

댓글 수: 1
This doesn't seem to be related to GUIDE.
What kind of object did you create and what have you tried?
For general advice and examples for how to create a GUI (and avoid using GUIDE), have look at this thread.
답변 (1개)
Jan
2021년 8월 6일
figure;
uicontrol('Style', 'Text', 'String', '', 'BackgroundColor', 'k', ...
'Position', [20, 20, 64, 24]);
uicontrol('Style', 'Text', 'String', 'ABC', 'BackgroundColor', 'y', ...
'Position', [22, 22, 60, 20]);
Brrr. Ugly, but working.
댓글 수: 1
Rik
2021년 8월 6일
I agree (both about the aestetics and functionality).
I would suggest setting Units to Normalized after creation to prevent issues when resizing the window.
카테고리
도움말 센터 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!