Change MATLAB App window title
159 views (last 30 days)
Show older comments
I created an app (in MATLAB R2023a) using App Designer. I want to change the UI Figure window title from "MATLAB App" to a custom title. How can this be done?
0 Comments
Accepted Answer
Mario Malic
on 7 Jun 2023
You can do it in two ways:
Programatically: find the handle of your UIFigure component in the component browser and type in your startupFcn:
app.UIFigure.Name = 'Custom name';
Otherwise, see picture and change the Name property:
More Answers (0)
See Also
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!