How to rename UI Figure window in App Designer
Show older comments
Hi
I am currently using App Designer to create an app which, I will eventually run through deploytool to generate a .exe file. However, I cannot change the app window title from UI Figure to a custom one. Please can anyone assist me?
Accepted Answer
More Answers (1)
Hikmet Osman
on 17 Feb 2021
2 votes
in the startupFcn(app) of your app add the code:
app.current name.Name='new name';
2 Comments
Robert Scott
on 17 Aug 2021
This does not work just FYI
There is no method for that
Thibault MARIN
on 22 Feb 2022
i think Hikmet meant you have to rename the Figure, not the app itself.
It works, and you can customize it if you use a sprintf function :
app.CurrentAppUIFigure.Name = sprintf('APP - %s (DATA)',name);
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!