I\'m having an issue dragging a file from Windows Explorer on to a Windows Forms application.
It works fine when I drag text, but for some reason it is not recognizing
Did you try to add the STAThread attribute to the main method?
STAThread
[STAThread] static void Main(string[] args) { }
I had the same problem as @mattruma meaning i got not Drag&Drop events. After adding the STAThread attribute to the main method it worked as expected.