InkCanvas.SelectionChanging イベント

定義

新しい一連のインク ストロークや要素が選択されると発生します。

public:
 event System::Windows::Controls::InkCanvasSelectionChangingEventHandler ^ SelectionChanging;
public event System.Windows.Controls.InkCanvasSelectionChangingEventHandler SelectionChanging;
member this.SelectionChanging : System.Windows.Controls.InkCanvasSelectionChangingEventHandler 
Public Custom Event SelectionChanging As InkCanvasSelectionChangingEventHandler 
Public Event SelectionChanging As InkCanvasSelectionChangingEventHandler 

イベントの種類

次の例では、選択したストロークをロイヤル ブルーにします。

void inkCanvas1_SelectionChanging(object sender, InkCanvasSelectionChangingEventArgs e)
{
    StrokeCollection selectedStrokes = e.GetSelectedStrokes();
    
    foreach (Stroke aStroke in inkCanvas1.Strokes)
    {
        if (selectedStrokes.Contains(aStroke))
        {
            aStroke.DrawingAttributes.Color = Colors.RoyalBlue;
        }
        else
        {
            aStroke.DrawingAttributes.Color = inkCanvas1.DefaultDrawingAttributes.Color;
        }
    }
}
Private Sub inkCanvas1_SelectionChanging(ByVal sender As Object, _
                                 ByVal e As InkCanvasSelectionChangingEventArgs)

    Dim selectedStrokes As StrokeCollection = e.GetSelectedStrokes()

    Dim aStroke As Stroke
    For Each aStroke In inkCanvas1.Strokes
        If selectedStrokes.Contains(aStroke) Then
            aStroke.DrawingAttributes.Color = Colors.RoyalBlue
        Else
            aStroke.DrawingAttributes.Color = inkCanvas1.DefaultDrawingAttributes.Color
        End If
    Next aStroke

End Sub

注釈

このイベントは SelectionChanging 、ストロークや要素がユーザーによって選択されたが、変更が適用される前に発生します。

イベントは SelectionChanging 、 が オブジェクトを InkCanvasSelectionChangingEventHandler 受け取 InkCanvasSelectionChangingEventArgs ると処理されます。 InkCanvasSelectionChangingEventArgs には、ユーザーが選択した後に FrameworkElement および StrokeCollection オブジェクトにアクセスするためのメソッドが用意されています。

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

注意

このイベントは SelectionChanging 、選択したストロークが削除されたとき、またはプロパティが変更された場合には ActiveEditingMode 発生しません。

適用対象

こちらもご覧ください