如何在canvas元素中添加多个Polylines?

时间:2013-09-22 17:00:57

标签: c# wpf canvas polyline

我有这样的事情:canvasGraph.Children.Add(new Polyline(){Points = new PointCollection((x1, y1), (x2, y2))});但它不起作用,我不知道如何处理它

1 个答案:

答案 0 :(得分:1)

您正在以错误的方式初始化您的积分:

canvasGraph.Children.Add(new Polyline(){
  Points = new PointCollection(
    new List<Point> {
      new Point(x1, y1), 
      new Point(x2, y2)})});