ItemDragEventArgs.Item Proprietà

Definizione

Ottiene l'elemento da trascinare.

public:
 property System::Object ^ Item { System::Object ^ get(); };
public object Item { get; }
public object? Item { get; }
member this.Item : obj
Public ReadOnly Property Item As Object

Valore della proprietà

Oggetto che rappresenta l'elemento da trascinare.

Esempio

Nell'esempio seguente viene illustrato l'uso di ItemDragEventArgs quando si abilitano le operazioni di trascinamento della selezione all'interno di un TreeView controllo . La Button proprietà determina se il nodo trascinato deve essere spostato o copiato nella destinazione. Il nodo, rappresentato dalla Item proprietà , viene quindi passato al metodo del DoDragDrop controllo insieme a TreeView un valore che indica l'effetto desiderato dell'operazione di trascinamento della selezione.

Per l'esempio completo, vedere l'argomento di TreeView.ItemDrag riferimento.

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

Commenti

È possibile utilizzare questa proprietà per determinare quale elemento dal TreeView controllo o ListView viene trascinato dal controllo .

Si applica a