質問

I have something like this: canvasGraph.Children.Add(new Polyline(){Points = new PointCollection((x1, y1), (x2, y2))}); but it does not work and I don`t know how to deal with it

役に立ちましたか?

解決

You are initializing your point collection the wrong way:

canvasGraph.Children.Add(new Polyline(){
  Points = new PointCollection(
    new List<Point> {
      new Point(x1, y1), 
      new Point(x2, y2)})});
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top