Article ID: 307966 - Last Review: July 30, 2008 - Revision: 3.0 How to provide file drag-and-drop functionality in a Visual C# applicationThis article was previously published under Q307966 On This PageSUMMARY
The step-by-step procedure that is outlined in this article demonstrates how to provide file drag-and-drop functionality in a Visual C# application. A ListBox control is used as the destination of the file drag-and-drop procedure.
RequirementsThis list outlines the recommended hardware, software, network infrastructure, and service packs that you need:
Steps to Build the SampleThe ListBox control provides two drag-and-drop events that you need to handle: DragEnter and DragDrop. The DragEnter event occurs when you drag an object within the bounds of the control and is used to determine whether the object that is being dragged is one that you want to allow to be dropped on the control. You handle this event for cases in which a file or files are dragged to the control. This allows the appropriate icon to be displayed when the object is dragged over the control, depending on the object that is being dragged. The DragDrop event occurs when the object that is being dragged has been released on the control. You handle this event to retrieve the object. The Data object is used to retrieve the data.The Data object's GetData method returns an array of strings that contain the full path names of the files that were dragged to the ListBox control. You can use this file path information to perform whatever operations are needed on the files. For example, you can use classes in the System.IO namespace to open and read the files, move the files, or copy the files to a new location. In this example, you just add the full path to the files that are dragged to the ListBox control. To provide file drag-and-drop functionality in a Visual C# application, follow these steps:
REFERENCES
For more information, see the following Microsoft Developer Network (MSDN) Web sites:
Control.DragEnter Event http://msdn.microsoft.com/en-us/library/system.windows.forms.control.dragenter(VS.71).aspx (http://msdn.microsoft.com/en-us/library/system.windows.forms.control.dragenter(vs.71).aspx) Control.DragDrop Event http://msdn.microsoft.com/en-us/library/system.windows.forms.control.dragdrop(VS.71).aspx (http://msdn.microsoft.com/en-us/library/system.windows.forms.control.dragdrop(vs.71).aspx) | Article Translations
|
Back to the top
