设置InputBox等提示框的字体以及样式

InputBox等窗体的字体大小设置方法 

 Graphics.DefFontData.Height:=48; 
 Graphics.DefFontData.Style:=[fsBold,fsItalic, fsUnderline]; 
 inputbox('aa','aa','dd'); 
 Graphics.DefFontData.Height:=0; 
 Graphics.DefFontData.Style:=[];

http://www.cnblogs.com/azhqiang/p/3848283.html

原文地址:https://www.cnblogs.com/findumars/p/7147703.html