private static WINDOWPLACEMENT GetPlacement(IntPtr windowHandle)
        {
            WINDOWPLACEMENT lpwndpl;

            UNSAFENATIVEMETHODS.GetWindowPlacement(windowHandle, out lpwndpl);
            return(lpwndpl);
        }