2

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

4

1 回答 1

1

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

canvasGraph.Children.Add(new Polyline(){
  Points = new PointCollection(
    new List<Point> {
      new Point(x1, y1), 
      new Point(x2, y2)})});
于 2013-09-22T17:38:06.177 回答