2017-09-03 111 views

回答

2

只是猜測,但是從文檔,它看起來像:

foreach (Stroke s in yourInkCanvas.Strokes) 
{ 
    foreach (StylusPoint sp in s.StylusPoints) 
    { 
     double X = sp.X; 
     double Y = sp.Y; 
    } 
}