I am making a UWP app in C# in Visual Studios 2015, that supports Windows v10.0.10240. However, when I try to access the StrokeStartedTime of the InkStroke class, I get the error listed in the title.
Asked
Active
Viewed 70 times
0
-
It would be useful if you include the sample code. Especially as to how you are accessing the property and including the InkStroke class in your code. – Prateek Apr 20 '17 at 22:30
-
hmm, right now I don't need the answer for my app anymore, because there is actually a StrokeStarted event, but an answer would be otherwise useful. – albertwujj Apr 20 '17 at 23:55
1 Answers
0
The StrokeStartedTime
property is a newly added API that updated by Windows 10 SDK Preview Build 15003 Released. You may require Visual Studio 2017 or higher and the UWP app need target "Windows 10 Creators Update (10.0; Build 15063)" or higher. More details please see section API Updates and Additions of the above release document.

Sunteen Wu
- 10,509
- 1
- 10
- 21
-
Thanks for the answer! I am using Visual Studios 2015 but I am a beginner and didn't know that was relevant. – albertwujj Apr 21 '17 at 15:38