I have a C# Winforms app in which I am trying to implement drag and drop of files and folders onto a label in a GroupBox, but I get a black No Entry icon when I try and drag files or folders from File Explorer onto it, or the containing form. The environment is Win 10 VS 2013.
I have the following without success:
1) Tried running the compiled app in a non-elevated mode to get around the fact that I am running VS 2013 as Administrator and File Explorer is run as a user account.
2) Set the Form in which the label in the group box is placed to AllowDragDrop.
3) Setting UAC to never notify me when apps make changes via Control Panel->User Accounts
AllowDropproperty also set totrueon the receiving Control(s)? Have you subscibed to theDragDropand (at least) theDragEnterevents of the control(s) that should accept the drop? How is thee.Effectset? Do you have a procedure that checks whether thee.Dataformats are compatible with what you can/want to manage? - Jimi