如何通知Windows有关桌面设置的更改?

时间:2010-12-05 17:01:15

标签: windows winapi system messaging getsystemmetrics

如何通知Windows系统我的程序更改了某些外观设置?

我正在使用:

HKEY_CURRENT_USER \ Control Panel \ Desktop - > FontSmoothing + FontSmoothingType

什么是标准方式?也许有一些信息。在哪里发送?

1 个答案:

答案 0 :(得分:4)

请勿直接修改注册表。

相反,请致电SystemParametersInfo function

SystemParametersInfo(SPI_SETFONTSMOOTHING, TRUE, NULL, SPIF_UPDATEINIFILE);