ItemDragEventArgs 类

定义

ItemDragListView 控件的 TreeView 事件提供数据。

public ref class ItemDragEventArgs : EventArgs
[System.Runtime.InteropServices.ComVisible(true)]
public class ItemDragEventArgs : EventArgs
public class ItemDragEventArgs : EventArgs
[<System.Runtime.InteropServices.ComVisible(true)>]
type ItemDragEventArgs = class
    inherit EventArgs
type ItemDragEventArgs = class
    inherit EventArgs
Public Class ItemDragEventArgs
Inherits EventArgs
继承
ItemDragEventArgs
属性

示例

以下示例演示如何在 中TreeView启用拖放操作时使用 ItemDragEventArgs 。 属性 Button 确定是应移动还是应将拖动的节点复制到其目标。 然后,由 Item 属性表示的节点与指示所需效果的值一起传递给 TreeView 控件的 DoDragDrop 方法。

有关完整示例,请参阅 TreeView.ItemDrag 参考主题。

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 );
      }
   }
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 if (e.Button == MouseButtons.Right)
    {
        DoDragDrop(e.Item, DragDropEffects.Copy);
    }
}
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

注解

当用户 ItemDrag 开始拖动项时发生该事件。 对象 ItemDragEventArgs 指定按下的鼠标按钮。

构造函数

ItemDragEventArgs(MouseButtons)

用指定的鼠标按钮初始化 ItemDragEventArgs 类的新实例。

ItemDragEventArgs(MouseButtons, Object)

用指定的鼠标按钮和正被拖动的项初始化 ItemDragEventArgs 类的新实例。

属性

Button

获取一个值,该值指示在拖动操作过程中按下的鼠标按钮。

Item

获取正被拖动的项。

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于