Beispiel #1
0
 public void SetTo(VertexControl to)
 {
     if (To == null)
     {
         To = to;
     }
     toPoint = new Point();
 }
Beispiel #2
0
 public EdgeControl(GraphArea rootGraph, VertexControl from)
 {
     From      = from;
     RootGraph = rootGraph;
     RootGraph.Children.Add(this);
     Panel.SetZIndex(this, 10);
     Color = Colors.Black;
 }
Beispiel #3
0
 public void SetFrom(VertexControl from)
 {
     From = from;
 }