InkCanvas.SelectionMoved Evento

Definizione

Si verifica dopo che l'utente sposta una selezione di tratti e/o elementi.

public:
 event EventHandler ^ SelectionMoved;
public event EventHandler SelectionMoved;
member this.SelectionMoved : EventHandler 
Public Custom Event SelectionMoved As EventHandler 
Public Event SelectionMoved As EventHandler 

Tipo evento

Esempio

Nell'esempio seguente vengono deselezionati gli elementi in un oggetto InkCanvas dopo lo spostamento dell'utente.

// Unselect the items on the InkCanvas once the user has moved them.
void inkCanvas1_SelectionMoved(object sender, EventArgs e)
{
    inkCanvas1.Select(null, null);
}
' Unselect the items on the InkCanvas once the user has moved them.
Private Sub inkCanvas1_SelectionMoved(ByVal sender As Object, ByVal e As EventArgs)

    inkCanvas1.Select(Nothing, Nothing)

End Sub

Commenti

Questo evento si verifica dopo aver spostato una selezione di tratti e/o elementi, ma prima che i dati del tratto o dell'elemento vengano aggiornati per registrarne la nuova posizione. Aggiungere un gestore eventi all'evento SelectionMoving .

Si applica a

Vedi anche