in the Microsoft.Ink world for WinForms, using an InkCollector object, a user could get the timestamp of a point in a stroke via this approach. The WPF world relies instead on the InkCanvas object, and while it has many properties, I can't seem to find a Tick or Timestamp for StylusPoints collected in the strokes. Is there an equivilant way to do this in the WPF InkCanvas?
it looks like I can intercept the strokes like this, but the StylusPoint is a sealed struct, so I can't just inherit/add a new property.