我有这样的事情:canvasGraph.Children.Add(new Polyline(){Points = new PointCollection((x1, y1), (x2, y2))});
但它不起作用,我不知道如何处理它
答案 0 :(得分:1)
您正在以错误的方式初始化您的积分:
canvasGraph.Children.Add(new Polyline(){
Points = new PointCollection(
new List<Point> {
new Point(x1, y1),
new Point(x2, y2)})});