2
如何使用c#在Xamarin中的imageview上繪製直線。我必須繪製直線並計算該線的長度。 請幫幫我。在此先感謝..如何在Xamarin中繪製直線?
如何使用c#在Xamarin中的imageview上繪製直線。我必須繪製直線並計算該線的長度。 請幫幫我。在此先感謝..如何在Xamarin中繪製直線?
可以擴展的UIImageView和方法內畫一條線,像這樣:
public void DrawLine()
{
CGContext context = UIGraphics.GetCurrentContext();
context.SetLineWidth (4);
UIColor.Clear.SetFill();
UIColor.Black.SetStroke();
currentPath = new CGPath();
currentPath.AddLines (points.ToArray());
context.AddPath (currentPath);
context.DrawPath (CGPathDrawingMode.Stroke);
context.SaveState();
}
點是的PointF對象的名單。
它工作的很好... –