BringWindowToTop function user32

int BringWindowToTop(
  1. int hWnd
)

Brings the specified window to the top of the Z order. If the window is a top-level window, it is activated. If the window is a child window, the top-level parent window associated with the child window is activated.

BOOL BringWindowToTop(
  HWND hWnd
);

Implementation

int BringWindowToTop(int hWnd) => _BringWindowToTop(hWnd);