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.
我想知道这两种 Windows API 方法有什么区别?
什么情况下需要调用ShowWindowAsync?
ShowWindow() 设置调用线程创建的窗口的可见性状态,当调用线程没有创建窗口时使用 ShowWindowAsync()。
从不同线程更改窗口的可见性状态时,您需要在多线程应用程序中使用ShowWindowAsync() 。