我在Matlab中制作GUI并想知道是否有任何方法可以改变消息框的字体大小?我使用以下命令:
h = msgbox('操作已完成');
我没有使用GUIDE。
谢谢
答案 0 :(得分:0)
这对我有用(R2015a):
h = msgbox('Operation Completed');
ah = get( h, 'CurrentAxes' );
ch = get( ah, 'Children' );
set(ch, 'FontName', 'Nimbus Roman No9 L');
结果: