
Change MATLAB App window title
83 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Rich006
am 7 Jun. 2023
Kommentiert: Rich006
am 7 Jun. 2023
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 Kommentare
Akzeptierte Antwort
Mario Malic
am 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:

Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!