ImageList_DragEnter

[DllImport("Comctl32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool ImageList_DragEnter(
   IntPtr hwndLock,
   int x,
   int y
);

Microsoft documentation: Link

Last updated