ItemDragEventArgs Class
Assembly: System.Windows.Forms (in system.windows.forms.dll)
'Declaration <ComVisibleAttribute(True)> _ Public Class ItemDragEventArgs Inherits EventArgs 'Usage Dim instance As ItemDragEventArgs
/** @attribute ComVisibleAttribute(true) */ public class ItemDragEventArgs extends EventArgs
ComVisibleAttribute(true) public class ItemDragEventArgs extends EventArgs
The following example illustrates the use of ItemDragEventArgs when enabling drag-and-drop operations within a TreeView. The Button property determines whether the dragged node should be moved or copied to its destination. The node, represented by the Item property, is then passed to the TreeView control's DoDragDrop method along with a value indicating the desired effect.
For the complete example, see the TreeView.ItemDrag reference topic.
Private Sub treeView1_ItemDrag(ByVal sender As Object, ByVal e As ItemDragEventArgs) ' Move the dragged node when the left mouse button is used. If e.Button = MouseButtons.Left Then DoDragDrop(e.Item, DragDropEffects.Move) ' Copy the dragged node when the right mouse button is used. ElseIf e.Button = MouseButtons.Right Then DoDragDrop(e.Item, DragDropEffects.Copy) End If End Sub 'treeView1_ItemDrag
private void treeView1_ItemDrag(Object sender, ItemDragEventArgs e)
{
// Move the dragged node when the left mouse button is used.
if (e.get_Button().Equals(get_MouseButtons().Left)) {
DoDragDrop(e.get_Item(), DragDropEffects.Move);
}
// Copy the dragged node when the right mouse button is used.
else {
if (e.get_Button().Equals(get_MouseButtons().Right)) {
DoDragDrop(e.get_Item(), DragDropEffects.Copy);
}
}
} //treeView1_ItemDrag
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.