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