uicontrol of pushbutton cannot set text color
2 ビュー (過去 30 日間)
古いコメントを表示
% 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.
0 件のコメント
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!