Changing Matlab icon of gui
4 ビュー (過去 30 日間)
古いコメントを表示
Hello Everybody, How i can change the Matlab icon the appears in the left corner of matalb gui and put my icon ? Thanks All
0 件のコメント
回答 (1 件)
Walter Roberson
2012 年 8 月 27 日
Doing that is against the Terms and Conditions of the MATLAB license.
4 件のコメント
Jorge Lopez
2015 年 12 月 16 日
function DetectSound_OpeningFcn(hObject, eventdata, handles, varargin)
warning('off','MATLAB:HandleGraphics:ObsoletedProperty:JavaFrame');
jFrame=get(handle(handles.figure1), 'javaframe');
jicon=javax.swing.ImageIcon('icon.gif');
jFrame.setFigureIcon(jicon);
Cleber Gama
2019 年 7 月 11 日
After convert GUI to exe file, the Java icon that appears.
Did you solve it?
参考
カテゴリ
Help Center および File Exchange で Install Products についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!