How can I change the icon of my AppDesigner-produced GUIs?

93 ビュー (過去 30 日間)
Micke Malmström
Micke Malmström 2018 年 3 月 19 日
編集済み: li li 2021 年 12 月 11 日
I would like to easily distinguage my GUI from the figures when pressing Alt+Tab so I can access it faster. Now when I run the GUIs they have the same icon as a regular figure...
  4 件のコメント
Marc McLean
Marc McLean 2019 年 4 月 19 日
How do you change the icon in the upper left of the .mlappp GUI launched from AppDesigner?
icon.jpg
Mohammed Majid Msallam
Mohammed Majid Msallam 2020 年 3 月 4 日
also me

サインインしてコメントする。

採用された回答

Cris LaPierre
Cris LaPierre 2020 年 10 月 29 日
Starting with R2020b, you can now specify custom icons for UI figure windows and toolbar push and toggle tools. See the release notes here.

その他の回答 (3 件)

li li
li li 2021 年 12 月 11 日
編集済み: li li 2021 年 12 月 11 日
R2020b OR Last version
function startupFcn(app)
app.uifigure .Icon='logo.png';
end
OK!

Cris LaPierre
Cris LaPierre 2019 年 4 月 20 日
編集済み: Cris LaPierre 2020 年 10 月 29 日
R2020b update: See this answer.
  1 件のコメント
Micke Malmström
Micke Malmström 2020 年 3 月 5 日
Note that I dont want to change the icon of the Matlab application (which "this answer" says you cant and which is understandable). I only want to change the icon of one particular figure window, so that I can find it easily when I have >25 figures open at the same time.

サインインしてコメントする。


Robert
Robert 2020 年 10 月 29 日
Add this to your startupFcn:
t = 0;
tMax = 5;
dt = 0.1;
while ~isfield(struct(struct(app.UIFigure).Controller), 'PlatformHost') && t < tMax
% Keep waiting until the window is found.
t = t + dt;
pause(dt)
end
win = struct(struct(struct(app.UIFigure).Controller).PlatformHost).CEF;
win.Icon = 'C:\Folder\MyIcon.ico';
Of course, you may have renamed the UIFIgure property of your app.
In R2016b and older, replace 'PlatformHost' with 'Container'.

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by