StrokeCollection.StrokesChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when a Stroke in the collection changes.
public:
event System::Windows::Ink::StrokeCollectionChangedEventHandler ^ StrokesChanged;
public event System.Windows.Ink.StrokeCollectionChangedEventHandler StrokesChanged;
member this.StrokesChanged : System.Windows.Ink.StrokeCollectionChangedEventHandler
Public Custom Event StrokesChanged As StrokeCollectionChangedEventHandler
Public Event StrokesChanged As StrokeCollectionChangedEventHandler
Event Type
Examples
The following example adds the current time as a custom property to each new stroke in the StrokesChanged event handler. The example assumes that the StrokesChanged event is connected to the event handler defined in this example.
Guid currentTimeGuid = new Guid("12345678-1234-1234-1234-123456789012");
void Strokes_StrokesChanged(object sender, StrokeCollectionChangedEventArgs args)
{
foreach (Stroke s in args.Added)
{
s.AddPropertyData(currentTimeGuid, DateTime.Now);
}
}
Dim currentTimeGuid As Guid = New Guid("12345678-1234-1234-1234-123456789012")
Private Sub Strokes_StrokesChanged(ByVal sender As Object, _
ByVal args As StrokeCollectionChangedEventArgs)
Dim s As Stroke
For Each s In args.Added
s.AddPropertyData(currentTimeGuid, DateTime.Now)
Next
End Sub
Applies to
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.