This documentation is archived and is not being maintained.
InkCanvas.StrokesReplaced Event
Visual Studio 2008
Occurs when the Strokes property is replaced.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
The following example demonstrates how to use two StrokeCollection objects that are co-located on the same InkCanvas. In this example, player one and player two each use an individual "inking surface" even though they share the same InkCanvas. This example assumes that the switchPlayersButton_Click event is connected to the event handler.
Private player1 As StrokeCollection Private player2 As StrokeCollection Sub InitializePlayersCanvases() player1 = inkCanvas1.Strokes player2 = New StrokeCollection() End Sub 'InitializePlayersCanvases ' Use a different "inking surface" for each player. Private Sub switchPlayersButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs) If StrokeCollection.ReferenceEquals(inkCanvas1.Strokes, player1) Then inkCanvas1.Strokes = player2 Else inkCanvas1.Strokes = player1 End If End Sub 'switchPlayersButton_Click Private Sub inkCanvas1_StrokesReplaced(ByVal sender As Object, _ ByVal e As InkCanvasStrokesReplacedEventArgs) If StrokeCollection.ReferenceEquals(e.NewStrokes, player1) Then Title = "Player one's turn" Else Title = "Player two's turn" End If End Sub 'inkCanvas1_StrokesReplaced
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: