ItemDragEventArgs.Button 属性

定义

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

public:
 property System::Windows::Forms::MouseButtons Button { System::Windows::Forms::MouseButtons get(); };
public System.Windows.Forms.MouseButtons Button { get; }
member this.Button : System.Windows.Forms.MouseButtons
Public ReadOnly Property Button As MouseButtons

属性值

MouseButtons 值的按位组合。

示例

以下示例演示在控件中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

注解

此属性使你能够确定在拖放操作期间按下了哪些鼠标按钮。 此属性的值可用于正确确定拖放操作应如何执行。 例如,你可能希望在按下鼠标左键时将项移动到新位置,并在按下鼠标右键时将其复制到新位置。

适用于