msgboxのダイアログ位置を、画面中央にしたい
Ältere Kommentare anzeigen
msgboxには表示位置を指定するoptionが無いので、以下のようなコードで「画面中央への表示」を試みました。
f = msgbox("メッセージ", "タイトル", 'help');
movegui(f, 'center');
しかし、msgbox実行時にダイアログが表示された後で画面中央に移動する為、ちらつきが発生してしまいます。
ちらつきが発生することなく、画面中央にダイアログを表示するにはどうすればよいでしょうか?
Akzeptierte Antwort
Weitere Antworten (1)
koji fukumoto
am 27 Sep. 2018
Kategorien
Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!