改变标题字体,菜单字体

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 yanleigis 的 blog

 

var
  ncm: tnonclientmetrics;
begin
  ncm.cbsize := sizeof(tnonclientmetrics);
  {get old non client metrics}
  systemparametersinfo(spi_getnonclientmetrics, sizeof(tnonclientmetrics), @ncm, 0);
  {
  lfcaptionfont - regular captions
  lfsmcaptionfont - small captions
  lfmenufont - menus
  lfstatusfont - status bars
  lfmessagefont - message boxes
  }
  ncm.lfmessagefont.lffacename := '楷体';
  ncm.lfmessagefont.lfheight:=18;
  ncm.lfcaptionfont.lfheight:=18;//标题字
  ncm.lfmenufont.lfheight:=18;//菜单
  {set new non client metrics}
  systemparametersinfo(spi_setnonclientmetrics, sizeof(tnonclientmetrics), @ncm, 0);
end;

e_mail:yanleigis@21cn.com

 

本文关键:改变系统字体
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top