[DllImport("user32.dll")]
static extern bool GetWindowInfo(IntPtr hwnd, ref WINDOWINFO pwi);
None.
You must assign the cbSize parameter prior to calling GetWindowInfo(). For example:
WINDOWINFO info = new WINDOWINFO();
info.cbSize = (uint)System.Runtime.InteropServices.Marshal.SizeOf(info);
GetWindowInfo(Handle, ref info);
Please add some!
Please add some!
Do you know one? Please contribute it!