I can define a new complex line and change location of a point, like below:
cLine.Segments[1].Start.Location = new PointF(cLine.Segments[1].Start.Location.X + 20,
cLine.Segments[1].Start.Location.Y + 20);
these codes above can work very well. Then I save this diagram as a XML file and load it again.
But after loading this XML file, I find these same codes can not work, I can not change location of a point.
Is there anybody can help me ?
Thanks