The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
IncrementalLassoHitTester.SelectionChanged Event
Visual Studio 2010
Occurs when the lasso path selects or unselects an ink Stroke.
Assembly: PresentationCore (in PresentationCore.dll)
The following example demonstrates how to dynamically select strokes in a custom control. For the entire sample, see How to: Select Ink from a Custom Control
Private Sub selectionTester_SelectionChanged(ByVal sender As Object, _ ByVal args As LassoSelectionChangedEventArgs) ' Change the color of all selected strokes to red. For Each selectedStroke As Stroke In args.SelectedStrokes selectedStroke.DrawingAttributes.Color = Colors.Red selectedStrokes.Add(selectedStroke) Next selectedStroke ' Change the color of all unselected strokes to ' their original color. For Each unselectedStroke As Stroke In args.DeselectedStrokes unselectedStroke.DrawingAttributes.Color = inkDA.Color selectedStrokes.Remove(unselectedStroke) Next unselectedStroke End Sub 'selectionHT_StrokeHitChanged
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Community Additions
Show: