blusun_2008 发表于 2008-11-5 19:52

GUI程序编写按钮图像问题

我用uitoggletool创建工具栏按钮时,如下
a=rand(16,16,3);
uitoggletool(ht,'separator','on','cdata',a,'tooltipstring','放大','oncallback',...
    'zoom on','offcallback','zoom off');

显示在图形工具栏上是一个默认的带有图像的toggle按钮,如果我想改变按钮上的图像,要怎样实现?谢谢!!

blusun_2008 发表于 2008-11-6 10:58

找到解决方法了!!

终于找到了解决方法,下面是所写的代码:
icon1=iconRead(fullfile(matlabroot,'toolbox\matlab\icons\zoom.mat'));
htt1=uitoggletool(ht,'Cdata',icon1,'oncallback','zoom on','offcallback','zoom off',...
   'Tooltipstring','放大','separator','on');
其中iconRead是把matlab里面的图标转换为三维图像传给icon1,程序可以在网上下,网址为:
https://svn.mpl.ird.fr/us191/tsg-qc/trunk/tsg_util/iconRead.m


通过这样就可以在你的GUI界面上画出你自己想要的系统有的图标了,如放大图形,等等!
页: [1]
查看完整版本: GUI程序编写按钮图像问题