V
VGA
Unregistered / Unconfirmed
GUEST, unregistred user!
打开 FR_Design.pas
找到 TfrDesignerForm 类的 WndProc 过程:
其中有一段代码:
with CCanvasdo
begin
Handle := hDC;
DrawItem(MenuItem, CCanvas, rcItem, ItemState and ODS_SELECTED <> 0);
Free;
end;
改为:
with CCanvasdo
begin
Handle := hDC;
Font.Name := '宋体';
Font.Size := 9;
DrawItem(MenuItem, CCanvas, rcItem, ItemState and ODS_SELECTED <> 0);
Free;
end;
如果已经安装了,请先卸载,在从新编译安装即可。