Change MATLAB App window title

조회 수: 162 (최근 30일)
Rich006
Rich006 2023년 6월 7일
댓글: Rich006 2023년 6월 7일
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?

채택된 답변

Mario Malic
Mario Malic 2023년 6월 7일
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
Rich006
Rich006 2023년 6월 7일
The programatic method works for me, but in the Component Browser, I do not see the same options that you show.
Rich006
Rich006 2023년 6월 7일
Oh, I see. If I click in the UI Figure window, then I see the options you show. If I click in the app but outside the UI Figure, then I see the App options as in my screenshot.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop uifigure-Based Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by