InkCanvas.HitTestSelection(Point) メソッド

定義

指定されたポイントと交差したり、指定されたポイントを囲んでいるのが、選択装飾のどの部分であるかを示す値を返します。

public:
 System::Windows::Controls::InkCanvasSelectionHitResult HitTestSelection(System::Windows::Point point);
public System.Windows.Controls.InkCanvasSelectionHitResult HitTestSelection (System.Windows.Point point);
member this.HitTestSelection : System.Windows.Point -> System.Windows.Controls.InkCanvasSelectionHitResult
Public Function HitTestSelection (point As Point) As InkCanvasSelectionHitResult

パラメーター

point
Point

ヒット テストの対象となる点。

戻り値

InkCanvasSelectionHitResult

指定されたポイントと交差したり、指定されたポイントを囲んでいるのが、選択装飾のどの部分であるかを示す値。

次の例では、ドラッグ アンド ドロップを開始する a DataObject を作成するかどうかを判断する方法HitTestSelectionを示します。 2 つの InkCanvas オブジェクト間でドラッグ アンド ドロップを実装するには、「 方法: インクをドラッグ アンド ドロップする」を参照してください。

void InkCanvas_PreviewMouseDown(object sender, MouseEventArgs e)
{
    InkCanvas ic = (InkCanvas)sender;
    
    Point pt = e.GetPosition(ic);

    // If the user is moving selected strokes, prepare the strokes to be
    // moved to another InkCanvas.
    if (ic.HitTestSelection(pt) == 
        InkCanvasSelectionHitResult.Selection)
    {
        StrokeCollection selectedStrokes = ic.GetSelectedStrokes();
        StrokeCollection strokesToMove = selectedStrokes.Clone();
    
        // Remove the offset of the selected strokes so they
        // are positioned when the strokes are dropped.
        Rect inkBounds = strokesToMove.GetBounds();
        TranslateStrokes(strokesToMove, -inkBounds.X, -inkBounds.Y);
        
        // Perform drag and drop.
        MemoryStream ms = new MemoryStream();
        strokesToMove.Save(ms);
        DataObject dataObject = new DataObject(
            StrokeCollection.InkSerializedFormat, ms);
        
        DragDropEffects effects = 
            DragDrop.DoDragDrop(ic, dataObject, 
                                DragDropEffects.Move);

        if ((effects & DragDropEffects.Move) == 
             DragDropEffects.Move)
        {
            // Remove the selected strokes 
            // from the current InkCanvas.
            ic.Strokes.Remove(selectedStrokes);
        }
    }
}
Private Sub InkCanvas_PreviewMouseDown(ByVal sender As Object, _
                               ByVal e As MouseButtonEventArgs)

    Dim ic As InkCanvas = CType(sender, InkCanvas)

    Dim pt As Point = e.GetPosition(ic)

    ' If the user is moving selected strokes, prepare the strokes to be
    ' moved to another InkCanvas.
    If ic.HitTestSelection(pt) = InkCanvasSelectionHitResult.Selection Then

        Dim selectedStrokes As StrokeCollection = _
                               ic.GetSelectedStrokes()

        Dim strokesToMove As StrokeCollection = _
                             selectedStrokes.Clone()

        ' Remove the offset of the selected strokes so they
        ' are positioned when the strokes are dropped.
        Dim inkBounds As Rect = strokesToMove.GetBounds()
        TranslateStrokes(strokesToMove, -inkBounds.X, -inkBounds.Y)

        ' Perform drag and drop.
        Dim ms As New MemoryStream()
        strokesToMove.Save(ms)

        Dim dataObject As New DataObject _
            (StrokeCollection.InkSerializedFormat, ms)

        Dim effects As DragDropEffects = _
            DragDrop.DoDragDrop(ic, dataObject, DragDropEffects.Move)

        If (effects And DragDropEffects.Move) = DragDropEffects.Move Then

            ' Remove the selected strokes from the current InkCanvas.
            ic.Strokes.Remove(selectedStrokes)
        End If
    End If

End Sub

注釈

このメソッドを HitTestSelection 使用して、点がストローク選択の境界内にあるか、8 つのハンドルの 1 つにあるかを判断します。 これは、ドラッグ アンド ドロップ操作を実行する場合に便利です。

適用対象