InkCanvas.SelectionMoving Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit avant que les traits et les éléments sélectionnés soient déplacés.
public:
event System::Windows::Controls::InkCanvasSelectionEditingEventHandler ^ SelectionMoving;
public event System.Windows.Controls.InkCanvasSelectionEditingEventHandler SelectionMoving;
member this.SelectionMoving : System.Windows.Controls.InkCanvasSelectionEditingEventHandler
Public Custom Event SelectionMoving As InkCanvasSelectionEditingEventHandler
Public Event SelectionMoving As InkCanvasSelectionEditingEventHandler
Type d'événement
Exemples
L’exemple suivant empêche l’utilisateur de déplacer verticalement les éléments sélectionnés sur un InkCanvas.
void inkCanvas1_SelectionMoving(object sender, InkCanvasSelectionEditingEventArgs e)
{
// Allow the selection to only move horizontally.
Rect newRect = e.NewRectangle;
e.NewRectangle = new Rect(newRect.X, e.OldRectangle.Y, newRect.Width, newRect.Height);
}
Private Sub inkCanvas1_SelectionMoving(ByVal sender As Object, _
ByVal e As InkCanvasSelectionEditingEventArgs)
' Allow the selection to only move horizontally.
Dim newRect As Rect = e.NewRectangle
e.NewRectangle = New Rect(newRect.X, e.OldRectangle.Y, newRect.Width, newRect.Height)
End Sub
Remarques
Cet événement se produit après que l’utilisateur a demandé qu’une sélection de traits et/ou d’éléments soit déplacée, mais avant l’application de la modification.
Le gestionnaire d’événements reçoit un argument de type InkCanvasSelectionEditingEventArgs avec deux propriétés : OldRectangle et NewRectangle. OldRectangle définit les limites de la sélection avant le déplacement et NewRectangle définit les limites de la sélection après le déplacement.
Une fois la modification appliquée, l’événement SelectionMoved se produit.