我正在尝试将图标放在按钮中,并且正在使用 GUI GUIDE。
在iconeditor
我尝试从 Matlab 图标路径导入文件但它不起作用。
然后我尝试像这样对按钮进行编程
function toolbar_OPT_ClickedCallback(hObject, eventdata, handles)
% hObject handle to toolbar_Print (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Use a MATLAB icon for the tool
[X, map] = imread(fullfile(matlabroot,'toolbox','matlab','icons','matlabicon.gif'));
% Convert indexed image and colormap to truecolor
icon = ind2rgb(X,map);
% Create a uipushtool in the toolbar
hpt = uipushtool('CData',icon)
但它还没有工作。有什么建议吗?