我在Matlab 2010b下使用GUIDE创建了一些GUI。在将Matlab升级到2015b后,我发现有些小部件现在有不同的设计,而我的旧GUI有不匹配的外观。有没有办法升级GUI以与2015b兼容?以下是显示不匹配小部件的屏幕截图。
我已经看到了一些升级脚本的引用,这些脚本会为您执行此操作,但我在官方matlab文档中没有看到任何引用。
答案 0 :(得分:1)
MATLAB没有任何正式的方法。您之间看到的这种差异是由于版本之间的默认uicontrol
和uipanel
BackgroundColor
属性存在差异。我有一个下面的脚本可以实际加载到.fig
文件(使用GUIDE或其他方式创建)并使用当前默认值替换BackgroundColors
个uicontrol
或uipanel
个对象背景颜色。然后重新保存.fig
文件,同时保留原始文件的备份。
function varargout = updatebgcolor(figfile)
% updatebgcolor - Updates the uicontrol background colors
%
% USAGE:
% updatebgcolor(figfile)
data = load(figfile, '-mat');
% Types of controls to update
types = {'uicontrol', 'uipanel'};
% Get the current default background color
bgcolor = get(0, 'DefaultUIControlBackgroundColor');
% Switch out all of the background colors
data2 = updateBackgroundColor(data, types, bgcolor);
% Resave the .fig file at the original location
movefile(figfile, [figfile, '.bkup']);
save(figfile, '-struct', 'data2')
if nargout; varargout = {data2}; end
end
function S = updateBackgroundColor(S, types, bgcolor)
% If this is not a struct, ignore it
if ~isstruct(S); return; end
% Handle when we have an array of structures
% (call this function on each one)
if numel(S) > 1
S = arrayfun(@(s)updateBackgroundColor(s, types, bgcolor), S);
return
end
% If this is a type we want to check and it has a backgroundcolor
% specified, then update the stored value
if isfield(S, 'type') && isfield(S, 'BackgroundColor') && ...
ismember(S.type, types)
S.BackgroundColor = bgcolor;
end
% Process all other fields of the structure recursively
fields = fieldnames(S);
for k = 1:numel(fields)
S.(fields{k}) = updateBackgroundColor(S.(fields{k}), types, bgcolor);
end
end