I am trying to implement a lazy drag and drop operation. I want to show a listview with files to my user, when the user drags a file and drops it into a folder the content should be downloaded and delivered.

I am using the IDataObject interface, but my problem is that the GetData() method is queried way too early. For instance a drag over the desktop (without any drop involved) will query the GetData() method a couple of times. And each of these calls starts the download of the file :/

Now, my question is: What's wrong here - why is the GetData() method called without any drop? Is there another way to implement lazy drag & drop operations in .net?

link|improve this question

The problem you will have is listening for the drop event in Explorer, which is when you would like to initiate the download. You can proof-of-concept this by drag-dropping onto another control in your form, which you will be able to subscribe to the drop event of. – Adam Houldsworth Sep 14 '10 at 13:04
Yes, this could help me, but it sounds a lot more complicated and binds my dropping to the explorer only. Other targest, that accept filedrops normally, wouldn't be able to get the data. In theory, the drop event should call IDataObject.GetData() - and only it should do so. Then I can deliver the data (direct or via download). However there are calls to this functions without an involved drop, which makes this approach unusable. – tanascius Sep 14 '10 at 13:09
Is there no way to delay the download until the receiving end actually asks to see the bytes? – jdv-Jan de Vaan Sep 14 '10 at 20:38
feedback

2 Answers

Maybe this could work for you...

On every occurrence of the GetData() do this:

  • you'll need some kind of a timer here.
  • if your timer is already active, kill it.
  • create and start a new timer. Make it 1sec or determine its duration from the experiment.
  • on timer event do what has to be done.

I use similar procedure on many occasions where such workaround is needed.

link|improve this answer
The problem here is that the drag could be canceled at all. – tanascius Sep 29 '10 at 7:42
Are you saying that there is no way that you could make distinction between completed drag&drop and canceled one? – Daniel Mošmondor Oct 1 '10 at 7:54
Yes, how do you abort your timer in case of an aborted drag&drop? – tanascius Oct 12 '10 at 8:23
If you didn't resolve that by now, I can try to go your way and solve the issues you have... – Daniel Mošmondor Oct 12 '10 at 8:31
feedback

I think GetData is being called so that the (potential) drop target can determine whether or not it can accept the (potential) drop item(s). Have you considered using a shell extension?

link|improve this answer
As far as I understand the GetDataPresent method should be called at first. Still trying ... – tanascius Sep 29 '10 at 7:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.