Change MATLAB App window title
146 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rich006
el 7 de Jun. de 2023
Comentada: Rich006
el 7 de Jun. de 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 comentarios
Respuesta aceptada
Mario Malic
el 7 de Jun. de 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:
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Develop uifigure-Based Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!