bool IsTopmost(HWND hwnd)
{
if (GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_TOPMOST)
return true;
return false;
}
bool IsTopmost(HWND hwnd)
{
if (GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_TOPMOST)
return true;
return false;
}
转载于:https://www.cnblogs.com/dengpeng1004/p/4954919.html