StrokeCollection.StrokesChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando un oggetto Stroke viene modificato nell'insieme.
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
Tipo evento
Esempio
Nell'esempio seguente viene aggiunta l'ora corrente come proprietà personalizzata a ogni nuovo tratto nel StrokesChanged gestore eventi. Nell'esempio si presuppone che l'evento StrokesChanged sia connesso al gestore eventi definito in questo esempio.
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