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에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!