GUIアプリのタイトルバーとロゴの変更について
18 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ibuki Takahashi
le 18 Août 2021
Réponse apportée : Toru Ikegami
le 18 Août 2021
matlabを用いてGUIアプリを作成しました。
アプリを起動すると、一番上にMathWorksのロゴと、MATLAB Appというタイトルバーが表示されます。
これを別のものに変更したいと考えております。
どこで変更することが可能でしょうか。よろしくお願いします。
0 commentaires
Réponse acceptée
Toru Ikegami
le 18 Août 2021
こんにちは.
AppDesigner を使用されているのでしたら,UIFigure のプロパティインスペクターの「識別子」を開くと,Name と Icon を設定できます.(アイコンファイルはMATLAB Path が通っているフォルダに置いておく必要があります.)
AppDesigner を使われていない場合ですと,UIFigure のハンドルをfhとして,
fh.Name = 'アプリの名前';
fh.Icon = 'アイコンとして表示するグラフィックファイルへのパス'
で設定できます.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur uifigure ベースのアプリ dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!