ShowWindowAsync 函数 (winuser.h)
设置窗口的显示状态,而无需等待操作完成。
语法
BOOL ShowWindowAsync(
[in] HWND hWnd,
[in] int nCmdShow
);
参数
[in] hWnd
类型:HWND
窗口的句柄。
[in] nCmdShow
类型: int
控制窗口的显示方式。 有关可能值的列表,请参阅 ShowWindow 函数的说明。
返回值
类型: BOOL
如果操作已成功启动,则返回值为非零值。
注解
此函数将 show-window 事件发布到给定窗口的消息队列。 应用程序可以使用此函数来避免在等待非响应应用程序完成显示窗口事件的处理时变得无响应。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | winuser.h (包括 Windows.h) |
Library | User32.lib |
DLL | User32.dll |
API 集 | ext-ms-win-ntuser-window-l1-1-4 (在 Windows 10 版本 10.0.14393 中引入) |
请参阅
概念性
引用