Hi,
i’m coding a program to create a Collage out of many Images. Is there a way that the user can drag Image files into the window? (e.g. from the Windows Explorer)
In xna that was easy because you could create a Windows Form from the window:
form = System.Windows.Forms.Form.FromHandle(Window.Handle) as System.Windows.Forms.Form;
then I used the DragEnter, DragOver and DragDrop Events.
Can I do something similiar in Monogame?