大家可能已经知道,使你的窗口置顶(TopMost)或者总是最前(Always on Top)的方法: C++ Code 12345 // Make topmost , SWP_NOMOVE | SWP_NOSIZE); // Revert back , SWP_NOMOVE | SWP_NOSIZE); 但是,你如何决定自己的窗口是否为TopMost状态?哈哈,可以这样来做: C++ Code 12345678 if (::GetWindowLong(hwnd, GWL_EX…
调用WindowsAPI使窗体始终保持置顶效果,不被其他窗体遮盖: [DllImport("user32.dll", CharSet = CharSet.Auto)] private static extern int SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int x, int y, int Width, int Height, int flags); /// <summary> /// 得到当前活动的窗口 /// &…