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.
我通过 Visual Studio 2010 开发了一个 MFC 应用程序。应用程序的界面包含一棵树,我使用 CPropTree 库来构建树。现在我需要定期刷新这个界面并重建树。
我怎么做?你有什么想法吗?
创建一个不同的线程,放置Sleep或其他一些指令。每次迭代后,对该树控件或该控件的父级使用SendMessage(或)。PostMessage同一线程上的计时器将无法正常工作。
Sleep
SendMessage
PostMessage