private static extern bool GetWindowInfo(IntPtr hwnd, ref WINDOWINFO pwi);
public static Nullable<WINDOWINFO> GetWindowInfo(IntPtr hwnd) { WINDOWINFO windowInfo = new WINDOWINFO(true); if (GetWindowInfo(hwnd, ref windowInfo)) { return windowInfo; } return null; }