InkCanvas.StrokesReplaced Event
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
'Declaration Public Event StrokesReplaced As InkCanvasStrokesReplacedEventHandler 'Usage Dim instance As InkCanvas Dim handler As InkCanvasStrokesReplacedEventHandler AddHandler instance.StrokesReplaced, handler
/** @event */ public void add_StrokesReplaced (InkCanvasStrokesReplacedEventHandler value) /** @event */ public void remove_StrokesReplaced (InkCanvasStrokesReplacedEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
<object StrokesReplaced="InkCanvasStrokesReplacedEventHandler" .../>
The following example demonstrates how to use two StrokeCollection objects for 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 the click event is connected to the event handler, switchPlayersButton_Click.
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. 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 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 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.