StrokeCollection.PropertyDataChanged 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 la proprietà personalizzata viene aggiunta o rimossa dall'insieme StrokeCollection.
public:
event System::Windows::Ink::PropertyDataChangedEventHandler ^ PropertyDataChanged;
public event System.Windows.Ink.PropertyDataChangedEventHandler PropertyDataChanged;
member this.PropertyDataChanged : System.Windows.Ink.PropertyDataChangedEventHandler
Public Custom Event PropertyDataChanged As PropertyDataChangedEventHandler
Public Event PropertyDataChanged As PropertyDataChangedEventHandler
Tipo evento
Esempio
Nell'esempio seguente viene illustrato come gestire l'evento PropertyDataChanged . In questo esempio si presuppone che sia presente un Guid evento denominato dateTimeGuid
e che l'evento PropertyDataChanged sia connesso al gestore eventi definito in questo esempio.
void Strokes_PropertyDataChanged(object sender, PropertyDataChangedEventArgs e)
{
if ((e.PropertyGuid == dateTimeGuid) && (e.NewValue is DateTime))
{
MessageBox.Show("The timestamp for the strokes is " +
((DateTime)e.NewValue).ToString());
}
}
Private Sub Strokes_PropertyDataChanged(ByVal sender As Object, _
ByVal e As PropertyDataChangedEventArgs)
If (e.PropertyGuid = dateTimeGuid) And (TypeOf e.NewValue Is DateTime) Then
MessageBox.Show("The timestamp for the strokes is " & _
(CType(e.NewValue, DateTime)).ToString())
End If
End Sub