uicontrol of pushbutton cannot set text color

2 ビュー (過去 30 日間)
raym
raym 2024 年 9 月 25 日
編集済み: Epsilon 2024 年 9 月 25 日
% Create a figure
fig = figure;
% Create a uicontrol button with red color
btn = uicontrol('Style', 'pushbutton', 'String', 'Click Me',...
'BackgroundColor', 'r',...
'ForegroundColor ', 'g',...
'Units', 'normalized', 'Position', [0.4 0.4 0.2 0.1]);
Error using uicontrol
There is no ForegroundColor property on the UIControl class.

採用された回答

Epsilon
Epsilon 2024 年 9 月 25 日
編集済み: Epsilon 2024 年 9 月 25 日
Hi raym,
Try removing the extra space after ForegroundColor.
Above mentioned code rectified:
% Create a figure
fig = figure;
% Create a uicontrol button with red color
btn = uicontrol('Style', 'pushbutton', 'String', 'Click Me',...
'BackgroundColor', 'r',...
'ForegroundColor', 'g',...
'Units', 'normalized', 'Position', [0.4 0.4 0.2 0.1]);

その他の回答 (0 件)

カテゴリ

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