Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 C++ 中使用MFC(Win32 API 的上层结构)。
我有一个组件Window和JSON 文件。在 JSON 文件中是height , width , top , left和值(它不是那么重要)。
我现在拥有的:我有一个正在运行的程序和 JSON 文件。如果我编辑 JSON 文件并保存它,更改将不会更改。更改在我关闭并启动新程序后生效。
我需要什么:如果我编辑 JSON 文件并保存它,更改将在运行时立即反映。
任何想法,使用指针或如何做到这一点?
您需要使用 FindFirstChangeNotification 创建一个事件,然后在其上使用 WaitForSingleObject。当目录内容发生指定事件时,它将发出信号。然后,您需要重新阅读并修改窗口的位置