closeWindow 函数 (winuser.h)

最小化 (但不销毁指定窗口) 。

语法

BOOL CloseWindow(
  [in] HWND hWnd
);

参数

[in] hWnd

类型:HWND

要最小化的窗口的句柄。

返回值

类型: BOOL

如果该函数成功,则返回值为非零值。

如果函数失败,则返回值为零。 要获得更多的错误信息,请调用 GetLastError。

注解

若要销毁窗口,应用程序必须使用 DestroyWindow 函数。

要求

要求
最低受支持的客户端 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 中引入)

另请参阅

ArrangeIconicWindows

概念性

DestroyWindow

IsIconic

OpenIcon

引用

Windows