StrokeCollection.StrokesChanged Evento
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Ocorre quando a Stroke na coleção muda.
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 de Evento
Exemplos
O exemplo seguinte adiciona o tempo atual como propriedade personalizada a cada novo traço no StrokesChanged gestor de eventos. O exemplo assume que o StrokesChanged evento está ligado ao gestor de eventos definido neste exemplo.
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