Tagged Questions
23
votes
6answers
7k views
How do I drag and drop files into a c# application?
I've seen this done in Borland's Turbo C++ environment, but I'm not sure how to go about it for a C# app I'm working on. Are there best practices or gotchas to look out for?
15
votes
2answers
2k views
Drag and drop to Desktop / Explorer
Following my scenario.
I got an Application which loads a Filestructure (Folders, Files) from a Database into a WPF ListView. Now I'd like to grab a file from this ListView, drag it over my Desktop ...
14
votes
4answers
3k views
Drag and Drop between Instances of the same Windows Forms Application
I have created a small Windows Forms test application to try out some drag/drop code. The form consists of three PictureBoxes. My intention was to grab a picture from one PictureBox, display it as a ...
12
votes
5answers
6k views
Drag'n'drop one or more mails from Outlook to C# WPF application
I'm working on a windows client written in WPF with C# on .Net 3.5 Sp1, where a requirement is that data from emails received by clients can be stored in the database. Right now the easiest way to ...
9
votes
5answers
4k views
C# Drag drop does not work on windows 7
I have had a project for quite a while using C# winforms. I implemented a drag-drop function before windows 7 was released. Worked like a charm. However, when using windows 7 it does not work. The ...
9
votes
2answers
363 views
drag into another process
I am trying to drag an item out into the explorer.
The item should result in a file download, so I've used an example I've found on the web to download the file using a CustomDataObject that calls an ...
7
votes
1answer
130 views
How do I maintain the file order in Windows Explorer when drag and dropping files into wpf/C# application?
In my application the user can drag and drop files from windows explorer onto a listbox in my application. This all works excellent however when dragging multiple files, depending which file the user ...
7
votes
2answers
234 views
Implement lazy drag & drop
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 ...
7
votes
2answers
593 views
Redrawing during drag and drop
I would like trigger the drag target control to redraw itself (via either invalidate or refresh) during the DragEnter and DragLeave events. The code looks something like:
protected override void ...
7
votes
2answers
13k views
C# Drag & drop from listbox to treeview
I have a winform with a listbox and a treeview.
Once my listbox is filled with items, I want to drag them (multiple or single) from the listbox and drop them in a node in the treeview.
If somebody ...
6
votes
1answer
922 views
DoDragDrop disables MouseMove Events
After having started a Drag & Drop operation by DragDrop.DoDragDrop(...) no more MouseMove Events are fired. I even tried
AddHandler(Window.MouseMoveEvent, new ...
6
votes
2answers
470 views
DoDragDrop freezes WinForms app sometimes
I'm doing a Drag Drop to external app like this:
string[] files = new string[/* */];
// get files
DataObject o = new DataObject(DataFormats.FileDrop, files);
DoDragDrop(o, DragDropEffects.Copy | ...
6
votes
3answers
1k views
Vista & C# - Drag & Drop problem (not related to elevation)
Application in question is .Net 2.0 Framework WinForms. It is supposed to work on large user base (installation from CD). Installation done using InnoSetup.
On two machines, application does not ...
5
votes
3answers
252 views
I want to drag an image from a Silverlight UIElement and drop it on the users Desktop or Windows Explorer
I have a Silverlight control containing an image. I want the user to be able to drag the image out of the Silverlight application and drop it anywhere they would be able to drop an image. For ...
5
votes
1answer
236 views
Winforms -> Visualize dragged item for Drag & Drop
I'd like to achieve the following and was looking for a sample/tutorial but couldn't really find anything:
I have C# Winforms application, which has multiple Forms within the same process. I'd like ...
5
votes
3answers
1k views
Visual marker when moving rows on DataGridView
Users drag rows up and down in my DataGridView. I have the dragging logic down-pat, but I'd like there to be a dark marker indicating where the row will be placed after I let go of the mouse.
...
5
votes
2answers
458 views
In Gtk, when using Drag and Drop in a TreeView, how do I keep from dropping between rows?
I'm testing a window that looks something like this:
Dragging a Tag to a Card links the Tag to the Card. So does dragging a Card to a Tag.
It's meaningless to drop a tag between two cards, or a ...
5
votes
1answer
472 views
C# ListView DragDrop Event Method Executing Twice Per Drop
The method executes twice in a row and there's no apparent reason for doing so.
It happens in VS2010 Express (4.0) and in VS2008 (3.5).
public GUI()
{
InitializeComponent();
...
5
votes
2answers
1k views
Whilst using drag and drop, can I cause a Treeview to Expand the node over which the user hovers?
In brief:
Is there any built-in function in .Net 2.0 to Expand TreeNodes when hovered over whilst a drag and drop operation is in progress?
I'm using C# in Visual Studio 2005.
In more detail:
...
5
votes
5answers
7k views
Detect Drag'n'Drop file in WPF?
Is it possible to have a WPF window/element detect the drag'n'dropping of a file from windows explorer in C# .Net 3.5? I've found solutions for WinForms, but none for WPF.
4
votes
2answers
52 views
Drag'n'drop to a Windows form issue
I have, what should be, a simple question on drag'n'drop. I have a fresh Win Form project where the form has set to allow drops using AllowDrop = true. Should also mention that I am running Windows 7 ...
4
votes
1answer
149 views
Drag and drop from windows forms to desktop and windows explorer
I've been having a hard time lately with implementing the drag and drop functionality outside the windows forms. I have no problem doing drag and drop within and between windows forms and from the ...
4
votes
4answers
68 views
Threading problem with passing data to a thread from within a DragDrop event
I have a C# app with a button for dragging and dropping files. I am able to take 6 files from my desktop and drop it onto the button and have it process those 6 files.
However, when I start a ...
4
votes
3answers
1k views
How to create a “Shell IDList Array” to support drag-and-drop of virtual files from C# to Windows Explorer?
I started trying to implement drag-and-drop of virtual files (from a C# 4/WPF app) with this codeproject tutorial. After spending some time trying to figure out a DV_E_FORMATETC error, I figured out I ...
4
votes
2answers
746 views
How can I allow Drag and Drop from Windows Explorer into a C# WPF application?
I know there have been tons of answers on this subject, but I still cannot get it to work at all. I've enabled AllowDrop on every control at every level of the application, and tried to catch ...
4
votes
6answers
1k views
Drag and Drop like Winspector Spy
I was wondering if anybody could give insight on how to implement the window selector in Winspector Spy. Basically, I would want to provide a panel that I could mouse down on, drag over to another ...
4
votes
2answers
526 views
Invalidate(); Vs. Update();
I have code that lets be drag around a borderless form in winforms that I've been using for several months now, which works extremely well.
But when I first was given the code, they used ...
4
votes
3answers
965 views
Cross-Process Drag and Drop of custom object type in WinForms C#
This question is close to what I'm interested in, but not quite.
I have a .NET WinForms application written in C#. I have a ListView control which displays an array of C# objects. I've hooked it up ...
4
votes
2answers
644 views
Drag & drop of a dynamically created shortcut
I have a C# application that creates shortcuts to launch other programs with specific arguments and initial directories. I would like the user to be able to drag a shortcut from the Windows form and ...
4
votes
1answer
2k views
How to use filegroupdescriptor to drag file to explorer c#
I would like to drag and drop an element of a listbox to explorer. When the drag and drop is started, I need to prepare the file on demand and save it to a memory stream.
Can you provide me with an ...
4
votes
2answers
926 views
Drag and drop from C# to Windows Explorer with IStorage/IStream
I've been working on what sounds like simple functionality for way too long now. The idea is that I have an application with a TreeView. This treeview represents contents of a database organized ...
4
votes
2answers
586 views
how to get the name of the application that generated the drag and drop
how do i find out which application dropped some content on my c# form? right now i'm doing some wild guesses, like
if (e.Data.GetDataPresent("UniformResourceLocatorW", true)) {
// URL dropped from ...
4
votes
2answers
447 views
Exception swallowed when doing drag and drop
I have a WinForms application where I'm doing drag and drop between 2 TreeViews.
At some point, I want to reject the action in the underlying business implementation, so I throw an Exception. I can ...
4
votes
3answers
3k views
Drag and drop from Windows File Explorer onto a Windows Form is not working
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 the file. Here is my test ...
3
votes
3answers
88 views
Keyboard events while dragging
I have two labels on a form. I want to be able to drag one label over the other and while the mouse left button is still down I want to be able to press space key to toggle target label's text between ...
3
votes
0answers
114 views
Visual Studio 2010 C# Form Project - Drag and Drop - best method?
My aim is to create an application whereby a user can drag a label from a tabbed container into some form of holding area - which had a ruler and a basic grid. I have consulted Google on the subject ...
3
votes
2answers
64 views
How to deal with GetDataPresent to let it accept all the derived types
I'm using drgevent.Data.GetDataPresent to determine whether the dragged component is acceptable or not.
I've got a problem which is that I want to accept a specific type say SomeType and all the ...
3
votes
1answer
375 views
How to disable drag/drop when a dialog box is open
I am working on a large application and am adding some drag/drop functionality to it. Specifically, I am allowing the user to drag and drop a file into the main window to open the file.
The problem ...
3
votes
1answer
109 views
Drop a virtual file to a FileDrop receiving target
I have an sftp client, and would like to drag virtual files from my listview (actually ObjectListView) to desktop, or other target accepting drop file. I can drag files from desktop to my listview and ...
3
votes
1answer
120 views
Change SystemParameters
Just a quick question: What exactly is the SystemParameters class? Is it just a collection of "default values" or is it actually kind of hooked into windows?
Background: For Drag&Drop operations ...
3
votes
2answers
965 views
WPF: Drag and drop virtual files into Windows explorer
I'm developing an application similar to dropbox and i show the remote files on a WPF listview. I want to drag those elements and drop it into windows explorer.
I've seen code like this:
var ...
3
votes
2answers
449 views
Get the path of a file dragged into winform
I am developing an application which required user to drag a file from windows explorer into the application window (winform). Is there a way to read the file name, path and other properties of the ...
3
votes
1answer
636 views
Enable drag&drop from explorer to Run-As-Administrator application
I built a winforms application, and implemented drag&drop functionality. this functionality works great in WinXP or in Win7 from Run-As-Administrator applications.
The problems become when tring ...
3
votes
1answer
563 views
Web browser to WPF image drag and drop
I have a window set to allow drop and my Drop Event Handler is working fine for images dragged in from Windows Explorer. But dragging in pictures from a web browser has some quirks.
In Firefox, I am ...
3
votes
3answers
818 views
drag and drop on NotifyIcon in tray in C#
I am trying to create a C# application that runs in tray where I can drop files on it's icon.
Is there any way to get the path of the file dropped on the System Tray icon? ...
3
votes
2answers
2k views
Drag & Drop Shapes on Canvas
I put several shapes (like Ellipse and Rectangle) on a Canvas.
Now, I want user to be able to drag & drop these shapes.
Is there some predefined functionality that I can use, or I should implement ...
3
votes
2answers
2k views
Why is drop allowed even if Effects = DragDropEffects.None is set?
Dragging happens from "source" to "target". When the source calls DoDragDrop() with allowedEffects as DragDropEffects.Copy, then I'm able to cancel the drop by setting Effects = DragDropEffects.None ...
3
votes
2answers
628 views
Drag and drop a html table into another application
I'm having a problem dragging an html table from my C# winforms application into an external application (Outlook email message) and getting it to render as a table instead of a plain text version of ...
3
votes
1answer
1k views
Design-Time drag and drop
I'm currently working of a project where my part is to design a Design Surface where the end user can add/remove/move controls at run-time.
I followed this tutorial "Hosting Windows Forms Designers, ...
3
votes
3answers
561 views
How can you detect when files are dropped into Windows Explorer?
I have a WinForms app that has a TreeView. The user can drag files from WindowsExplorer to the TreeView, and then they can drag the files back into WindowsExplorer which in affect copies the files to ...