InkCanvas.SelectionMoving イベント

定義

選択したストロークと要素を移動する前に発生します。

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 

イベントの種類

次の例では、 で選択した項目を垂直方向に 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

注釈

このイベントは、ユーザーがストロークや要素の選択を移動することを要求した後、変更が適用される前に発生します。

イベント ハンドラーは、 と の 2 つのプロパティOldRectangleを持つ型InkCanvasSelectionEditingEventArgsの引数をNewRectangle受け取ります。 OldRectangle は、移動前の選択範囲の境界を定義し、 NewRectangle 移動後の選択範囲の境界を定義します。

変更が適用されると、イベントが SelectionMoved 発生します。

適用対象

こちらもご覧ください