StrokeCollection.PropertyDataChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在自定义属性添加至 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
事件类型
示例
以下示例演示如何处理 事件 PropertyDataChanged 。 此示例假定有 一个 Guid 调用 dateTimeGuid
的 PropertyDataChanged ,并且事件已连接到此示例中定义的事件处理程序。
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