In Guide, How to add border

8 ビュー (過去 30 日間)
dmfwlansejr
dmfwlansejr 2021 年 8 月 6 日
コメント済み: Rik 2021 年 8 月 6 日
In static text, how to add border line
Like this
  1 件のコメント
Rik
Rik 2021 年 8 月 6 日
編集済み: Rik 2021 年 8 月 6 日
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
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
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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by