GUIアプリのタイトルバーとロゴの変更について
18 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ibuki Takahashi
am 18 Aug. 2021
Beantwortet: Toru Ikegami
am 18 Aug. 2021
matlabを用いてGUIアプリを作成しました。
アプリを起動すると、一番上にMathWorksのロゴと、MATLAB Appというタイトルバーが表示されます。
これを別のものに変更したいと考えております。
どこで変更することが可能でしょうか。よろしくお願いします。
0 Kommentare
Akzeptierte Antwort
Toru Ikegami
am 18 Aug. 2021
こんにちは.
AppDesigner を使用されているのでしたら,UIFigure のプロパティインスペクターの「識別子」を開くと,Name と Icon を設定できます.(アイコンファイルはMATLAB Path が通っているフォルダに置いておく必要があります.)
AppDesigner を使われていない場合ですと,UIFigure のハンドルをfhとして,
fh.Name = 'アプリの名前';
fh.Icon = 'アイコンとして表示するグラフィックファイルへのパス'
で設定できます.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu uifigure ベースのアプリ 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!