共用方式為


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)
程式庫 User32.lib
Dll User32.dll
API 集合 ext-ms-win-ntuser-window-l1-1-4 (在 Windows 10 10.0.14393 版中引進)

另請參閱

概念

參考

ShowWindow

Windows