如何通知 Windows 系统我的程序更改了某些外观设置?
我正在与:
HKEY_CURRENT_USER\Control Panel\Desktop -> FontSmoothing + FontSmoothingType
什么是标准方式?也许有一些信息。寄到哪里?
如何通知 Windows 系统我的程序更改了某些外观设置?
我正在与:
HKEY_CURRENT_USER\Control Panel\Desktop -> FontSmoothing + FontSmoothingType
什么是标准方式?也许有一些信息。寄到哪里?
不要直接修改注册表。
相反,调用SystemParametersInfo
函数:
SystemParametersInfo(SPI_SETFONTSMOOTHING, TRUE, NULL, SPIF_UPDATEINIFILE);