DragAcceptFiles

[DllImport("shell32.dll")]
public static extern void DragAcceptFiles(
   IntPtr hwnd,
   bool fAccept
);

Microsoft documentation: Link

Last updated