delphi SetWindowPos取消置顶
发布网友
发布时间:2022-04-23 03:33
我来回答
共1个回答
热心网友
时间:2023-05-06 16:38
设置顶层(Z-order)窗口和非顶层窗口都可以使用SetWindowPos.
如下api取消置顶:
SetWindowPos( hWnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE );
或者 SetWindowPos( hWnd,HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE );