CascadeWindows

[DllImport("user32.dll", SetLastError = true)]
public static extern uint CascadeWindows(
   IntPtr hwndParent,
   uint wHow,
   [In] ref RECT lpRect,
   uint cKids,
   [In] IntPtr lpKids
);

Microsoft documentation: Link

Last updated