* Reset branch for WPF changes * Convert BMP to PNG; fix link-out-of-scope err * Add snippets for WPF... 6794 files!!!! * Add missing snippets * update file updated between migration * Fix paths to include * update breadcrumb and toc * fix index links * fix index links * fix index links * fix markdown
22 KiB
title, description, ms.date, dev_langs, helpviewer_keywords, ms.assetid
| title | description | ms.date | dev_langs | helpviewer_keywords | ms.assetid | ||||
|---|---|---|---|---|---|---|---|---|---|
| Walkthrough: Enabling Drag and Drop on a User Control | Learn how to create a custom user control that can participate in drag-and-drop data transfer in Windows Presentation Foundation. | 03/30/2017 |
|
|
cc844419-1a77-4906-95d9-060d79107fc7 |
Walkthrough: Enabling Drag and Drop on a User Control
This walkthrough demonstrates how to create a custom user control that can participate in drag-and-drop data transfer in [!INCLUDETLA#tla_winclient].
In this walkthrough, you will create a custom WPF xref:System.Windows.Controls.UserControl that represents a circle shape. You will implement functionality on the control to enable data transfer through drag-and-drop. For example, if you drag from one Circle control to another, the Fill color data is copied from the source Circle to the target. If you drag from a Circle control to a xref:System.Windows.Controls.TextBox, the string representation of the Fill color is copied to the xref:System.Windows.Controls.TextBox. You will also create a small application that contains two panel controls and a xref:System.Windows.Controls.TextBox to test the drag-and-drop functionality. You will write code that enables the panels to process dropped Circle data, which will enable you to move or copy Circles from the Children collection of one panel to the other.
This walkthrough illustrates the following tasks:
-
Create a custom user control.
-
Enable the user control to be a drag source.
-
Enable the user control to be a drop target.
-
Enable a panel to receive data dropped from the user control.
Prerequisites
You need Visual Studio to complete this walkthrough.
Create the Application Project
In this section, you will create the application infrastructure, which includes a main page with two panels and a xref:System.Windows.Controls.TextBox.
-
Create a new WPF Application project in Visual Basic or Visual C# named
DragDropExample. For more information, see Walkthrough: My first WPF desktop application. -
Open MainWindow.xaml.
-
Add the following markup between the opening and closing xref:System.Windows.Controls.Grid tags.
This markup creates the user interface for the test application.
[!code-xamlDragDropWalkthrough#PanelsStep1XAML]
Add a New User Control to the Project
In this section, you will add a new user control to the project.
-
On the Project menu, select Add User Control.
-
In the Add New Item dialog box, change the name to
Circle.xaml, and click Add.Circle.xaml and its code-behind is added to the project.
-
Open Circle.xaml.
This file will contain the user interface elements of the user control.
-
Add the following markup to the root xref:System.Windows.Controls.Grid to create a simple user control that has a blue circle as its UI.
[!code-xamlDragDropWalkthrough#EllipseXAML]
-
Open Circle.xaml.cs or Circle.xaml.vb.
-
In C#, add the following code after the parameterless constructor to create a copy constructor. In Visual Basic, add the following code to create both a parameterless constructor and a copy constructor.
In order to allow the user control to be copied, you add a copy constructor method in the code-behind file. In the simplified Circle user control, you will only copy the Fill and the size of the of the user control.
[!code-csharpDragDropWalkthrough#CopyCtor] [!code-vbDragDropWalkthrough#CopyCtor]
Add the user control to the main window
-
Open MainWindow.xaml.
-
Add the following XAML to the opening xref:System.Windows.Window tag to create an XML namespace reference to the current application.
xmlns:local="clr-namespace:DragDropExample" -
In the first xref:System.Windows.Controls.StackPanel, add the following XAML to create two instances of the Circle user control in the first panel.
[!code-xamlDragDropWalkthrough#CirclesXAML]
The full XAML for the panel looks like the following.
[!code-xamlDragDropWalkthrough#PanelsStep2XAML]
Implement Drag Source Events in the User Control
In this section, you will override the xref:System.Windows.UIElement.OnMouseMove%2A method and initiate the drag-and-drop operation.
If a drag is started (a mouse button is pressed and the mouse is moved), you will package the data to be transferred into a xref:System.Windows.DataObject. In this case, the Circle control will package three data items; a string representation of its Fill color, a double representation of its height, and a copy of itself.
To initiate a drag-and-drop operation
-
Open Circle.xaml.cs or Circle.xaml.vb.
-
Add the following xref:System.Windows.UIElement.OnMouseMove%2A override to provide class handling for the xref:System.Windows.UIElement.MouseMove event.
[!code-csharpDragDropWalkthrough#OnMouseMove] [!code-vbDragDropWalkthrough#OnMouseMove]
This xref:System.Windows.UIElement.OnMouseMove%2A override performs the following tasks:
-
Checks whether the left mouse button is pressed while the mouse is moving.
-
Packages the Circle data into a xref:System.Windows.DataObject. In this case, the Circle control packages three data items; a string representation of its Fill color, a double representation of its height, and a copy of itself.
-
Calls the static xref:System.Windows.DragDrop.DoDragDrop%2A?displayProperty=nameWithType method to initiate the drag-and-drop operation. You pass the following three parameters to the xref:System.Windows.DragDrop.DoDragDrop%2A method:
-
dragSource– A reference to this control. -
data– The xref:System.Windows.DataObject created in the previous code. -
allowedEffects– The allowed drag-and-drop operations, which are xref:System.Windows.DragDropEffects.Copy or xref:System.Windows.DragDropEffects.Move.
-
-
-
Press F5 to build and run the application.
-
Click one of the Circle controls and drag it over the panels, the other Circle, and the xref:System.Windows.Controls.TextBox. When dragging over the xref:System.Windows.Controls.TextBox, the cursor changes to indicate a move.
-
While dragging a Circle over the xref:System.Windows.Controls.TextBox, press the Ctrl key. Notice how the cursor changes to indicate a copy.
-
Drag and drop a Circle onto the xref:System.Windows.Controls.TextBox. The string representation of the Circle’s fill color is appended to the xref:System.Windows.Controls.TextBox.
By default, the cursor will change during a drag-and-drop operation to indicate what effect dropping the data will have. You can customize the feedback given to the user by handling the xref:System.Windows.UIElement.GiveFeedback event and setting a different cursor.
Give feedback to the user
-
Open Circle.xaml.cs or Circle.xaml.vb.
-
Add the following xref:System.Windows.UIElement.OnGiveFeedback%2A override to provide class handling for the xref:System.Windows.UIElement.GiveFeedback event.
[!code-csharpDragDropWalkthrough#OnGiveFeedback] [!code-vbDragDropWalkthrough#OnGiveFeedback]
This xref:System.Windows.UIElement.OnGiveFeedback%2A override performs the following tasks:
-
Checks the xref:System.Windows.GiveFeedbackEventArgs.Effects%2A values that are set in the drop target's xref:System.Windows.UIElement.DragOver event handler.
-
Sets a custom cursor based on the xref:System.Windows.GiveFeedbackEventArgs.Effects%2A value. The cursor is intended to give visual feedback to the user about what effect dropping the data will have.
-
-
Press F5 to build and run the application.
-
Drag one of the Circle controls over the panels, the other Circle, and the xref:System.Windows.Controls.TextBox. Notice that the cursors are now the custom cursors that you specified in the xref:System.Windows.UIElement.OnGiveFeedback%2A override.
-
Select the text
greenfrom the xref:System.Windows.Controls.TextBox. -
Drag the
greentext to a Circle control. Notice that the default cursors are shown to indicate the effects of the drag-and-drop operation. The feedback cursor is always set by the drag source.
Implement Drop Target Events in the User Control
In this section, you will specify that the user control is a drop target, override the methods that enable the user control to be a drop target, and process the data that is dropped on it.
To enable the user control to be a drop target
-
Open Circle.xaml.
-
In the opening xref:System.Windows.Controls.UserControl tag, add the xref:System.Windows.UIElement.AllowDrop%2A property and set it to
true.[!code-xamlDragDropWalkthrough#UCTagXAML]
The xref:System.Windows.UIElement.OnDrop%2A method is called when the xref:System.Windows.UIElement.AllowDrop%2A property is set to true and data from the drag source is dropped on the Circle user control. In this method, you will process the data that was dropped and apply the data to the Circle.
To process the dropped data
-
Open Circle.xaml.cs or Circle.xaml.vb.
-
Add the following xref:System.Windows.UIElement.OnDrop%2A override to provide class handling for the xref:System.Windows.UIElement.Drop event.
[!code-csharpDragDropWalkthrough#OnDrop] [!code-vbDragDropWalkthrough#OnDrop]
This xref:System.Windows.UIElement.OnDrop%2A override performs the following tasks:
-
Uses the xref:System.Windows.DataObject.GetDataPresent%2A method to check if the dragged data contains a string object.
-
Uses the xref:System.Windows.DataObject.GetData%2A method to extract the string data if it is present.
-
Uses a xref:System.Windows.Media.BrushConverter to try to convert the string to a xref:System.Windows.Media.Brush.
-
If the conversion is successful, applies the brush to the xref:System.Windows.Shapes.Shape.Fill%2A of the xref:System.Windows.Shapes.Ellipse that provides the UI of the Circle control.
-
Marks the xref:System.Windows.UIElement.Drop event as handled. You should mark the drop event as handled so that other elements that receive this event know that the Circle user control handled it.
-
-
Press F5 to build and run the application.
-
Select the text
greenin the xref:System.Windows.Controls.TextBox. -
Drag the text to a Circle control and drop it. The Circle changes from blue to green.
-
Type the text
greenin the xref:System.Windows.Controls.TextBox. -
Select the text
grein the xref:System.Windows.Controls.TextBox. -
Drag it to a Circle control and drop it. Notice that the cursor changes to indicate that the drop is allowed, but the color of the Circle does not change because
greis not a valid color. -
Drag from the green Circle control and drop on the blue Circle control. The Circle changes from blue to green. Notice that which cursor is shown depends on whether the xref:System.Windows.Controls.TextBox or the Circle is the drag source.
Setting the xref:System.Windows.UIElement.AllowDrop%2A property to true and processing the dropped data is all that is required to enable an element to be a drop target. However, to provide a better user experience, you should also handle the xref:System.Windows.UIElement.DragEnter, xref:System.Windows.UIElement.DragLeave, and xref:System.Windows.UIElement.DragOver events. In these events, you can perform checks and provide additional feedback to the user before the data is dropped.
When data is dragged over the Circle user control, the control should notify the drag source whether it can process the data that is being dragged. If the control does not know how to process the data, it should refuse the drop. To do this, you will handle the xref:System.Windows.UIElement.DragOver event and set the xref:System.Windows.DragEventArgs.Effects%2A property.
To verify that the data drop is allowed
-
Open Circle.xaml.cs or Circle.xaml.vb.
-
Add the following xref:System.Windows.UIElement.OnDragOver%2A override to provide class handling for the xref:System.Windows.UIElement.DragOver event.
[!code-csharpDragDropWalkthrough#OnDragOver] [!code-vbDragDropWalkthrough#OnDragOver]
This xref:System.Windows.UIElement.OnDragOver%2A override performs the following tasks:
-
Sets the xref:System.Windows.DragEventArgs.Effects%2A property to xref:System.Windows.DragDropEffects.None.
-
Performs the same checks that are performed in the xref:System.Windows.UIElement.OnDrop%2A method to determine whether the Circle user control can process the dragged data.
-
If the user control can process the data, sets the xref:System.Windows.DragEventArgs.Effects%2A property to xref:System.Windows.DragDropEffects.Copy or xref:System.Windows.DragDropEffects.Move.
-
-
Press F5 to build and run the application.
-
Select the text
grein the xref:System.Windows.Controls.TextBox. -
Drag the text to a Circle control. Notice that the cursor now changes to indicate that the drop is not allowed because
greis not a valid color.
You can further enhance the user experience by applying a preview of the drop operation. For the Circle user control, you will override the xref:System.Windows.UIElement.OnDragEnter%2A and xref:System.Windows.UIElement.OnDragLeave%2A methods. When the data is dragged over the control, the current background xref:System.Windows.Shapes.Shape.Fill%2A is saved in a placeholder variable. The string is then converted to a brush and applied to the xref:System.Windows.Shapes.Ellipse that provides the Circle's UI. If the data is dragged out of the Circle without being dropped, the original xref:System.Windows.Shapes.Shape.Fill%2A value is re-applied to the Circle.
To preview the effects of the drag-and-drop operation
-
Open Circle.xaml.cs or Circle.xaml.vb.
-
In the Circle class, declare a private xref:System.Windows.Media.Brush variable named
_previousFilland initialize it tonull.[!code-csharpDragDropWalkthrough#Brush] [!code-vbDragDropWalkthrough#Brush]
-
Add the following xref:System.Windows.UIElement.OnDragEnter%2A override to provide class handling for the xref:System.Windows.UIElement.DragEnter event.
[!code-csharpDragDropWalkthrough#OnDragEnter] [!code-vbDragDropWalkthrough#OnDragEnter]
This xref:System.Windows.UIElement.OnDragEnter%2A override performs the following tasks:
-
Saves the xref:System.Windows.Shapes.Shape.Fill%2A property of the xref:System.Windows.Shapes.Ellipse in the
_previousFillvariable. -
Performs the same checks that are performed in the xref:System.Windows.UIElement.OnDrop%2A method to determine whether the data can be converted to a xref:System.Windows.Media.Brush.
-
If the data is converted to a valid xref:System.Windows.Media.Brush, applies it to the xref:System.Windows.Shapes.Shape.Fill%2A of the xref:System.Windows.Shapes.Ellipse.
-
-
Add the following xref:System.Windows.UIElement.OnDragLeave%2A override to provide class handling for the xref:System.Windows.UIElement.DragLeave event.
[!code-csharpDragDropWalkthrough#OnDragLeave] [!code-vbDragDropWalkthrough#OnDragLeave]
This xref:System.Windows.UIElement.OnDragLeave%2A override performs the following tasks:
- Applies the xref:System.Windows.Media.Brush saved in the
_previousFillvariable to the xref:System.Windows.Shapes.Shape.Fill%2A of the xref:System.Windows.Shapes.Ellipse that provides the UI of the Circle user control.
- Applies the xref:System.Windows.Media.Brush saved in the
-
Press F5 to build and run the application.
-
Select the text
greenin the xref:System.Windows.Controls.TextBox. -
Drag the text over a Circle control without dropping it. The Circle changes from blue to green.
-
Drag the text away from the Circle control. The Circle changes from green back to blue.
Enable a Panel to Receive Dropped Data
In this section, you enable the panels that host the Circle user controls to act as drop targets for dragged Circle data. You will implement code that enables you to move a Circle from one panel to another, or to make a copy of a Circle control by holding down the Ctrl key while dragging and dropping a Circle.
-
Open MainWindow.xaml.
-
As shown in the following XAML, in each of the xref:System.Windows.Controls.StackPanel controls, add handlers for the xref:System.Windows.UIElement.DragOver and xref:System.Windows.UIElement.Drop events. Name the xref:System.Windows.UIElement.DragOver event handler,
panel_DragOver, and name the xref:System.Windows.UIElement.Drop event handler,panel_Drop.[!code-xamlDragDropWalkthrough#PanelsXAML]
-
Open MainWindows.xaml.cs or MainWindow.xaml.vb.
-
Add the following code for the xref:System.Windows.UIElement.DragOver event handler.
[!code-csharpDragDropWalkthrough#PanelDragOver] [!code-vbDragDropWalkthrough#PanelDragOver]
This xref:System.Windows.UIElement.DragOver event handler performs the following tasks:
-
Checks that the dragged data contains the "Object" data that was packaged in the xref:System.Windows.DataObject by the Circle user control and passed in the call to xref:System.Windows.DragDrop.DoDragDrop%2A.
-
If the "Object" data is present, checks whether the Ctrl key is pressed.
-
If the Ctrl key is pressed, sets the xref:System.Windows.DragEventArgs.Effects%2A property to xref:System.Windows.DragDropEffects.Copy. Otherwise, set the xref:System.Windows.DragEventArgs.Effects%2A property to xref:System.Windows.DragDropEffects.Move.
-
-
Add the following code for the xref:System.Windows.UIElement.Drop event handler.
[!code-csharpDragDropWalkthrough#PanelDrop] [!code-vbDragDropWalkthrough#PanelDrop]
This xref:System.Windows.UIElement.Drop event handler performs the following tasks:
-
Checks whether the xref:System.Windows.UIElement.Drop event has already been handled. For instance, if a Circle is dropped on another Circle which handles the xref:System.Windows.UIElement.Drop event, you do not want the panel that contains the Circle to also handle it.
-
If the xref:System.Windows.UIElement.Drop event is not handled, checks whether the Ctrl key is pressed.
-
If the Ctrl key is pressed when the xref:System.Windows.UIElement.Drop happens, makes a copy of the Circle control and add it to the xref:System.Windows.Controls.Panel.Children%2A collection of the xref:System.Windows.Controls.StackPanel.
-
If the Ctrl key is not pressed, moves the Circle from the xref:System.Windows.Controls.Panel.Children%2A collection of its parent panel to the xref:System.Windows.Controls.Panel.Children%2A collection of the panel that it was dropped on.
-
Sets the xref:System.Windows.DragEventArgs.Effects%2A property to notify the xref:System.Windows.DragDrop.DoDragDrop%2A method whether a move or copy operation was performed.
-
-
Press F5 to build and run the application.
-
Select the text
greenfrom the xref:System.Windows.Controls.TextBox. -
Drag the text over a Circle control and drop it.
-
Drag a Circle control from the left panel to the right panel and drop it. The Circle is removed from the xref:System.Windows.Controls.Panel.Children%2A collection of the left panel and added to the Children collection of the right panel.
-
Drag a Circle control from the panel it is in to the other panel and drop it while pressing the Ctrl key. The Circle is copied and the copy is added to the xref:System.Windows.Controls.Panel.Children%2A collection of the receiving panel.




