ItemDragEventArgs Class
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Name | Description | |
|---|---|---|
![]() | ItemDragEventArgs(MouseButtons) | Initializes a new instance of the ItemDragEventArgs class with a specified mouse button. |
![]() | ItemDragEventArgs(MouseButtons, Object^) | Initializes a new instance of the ItemDragEventArgs class with a specified mouse button and the item that is being dragged. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The ItemDrag event occurs when the user begins dragging an item. An ItemDragEventArgs object specifies which mouse button was pressed.
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: void treeView1_ItemDrag( Object^ /*sender*/, ItemDragEventArgs^ e ) { // Move the dragged node when the left mouse button is used. if ( e->Button == ::MouseButtons::Left ) { DoDragDrop( e->Item, DragDropEffects::Move ); } // Copy the dragged node when the right mouse button is used. else // Copy the dragged node when the right mouse button is used. if ( e->Button == ::MouseButtons::Right ) { DoDragDrop( e->Item, DragDropEffects::Copy ); } }
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


