public void FillInToGraphControl(GraphControl gc) { gc.AddNodes(NodeIdentifierDict.Keys); foreach (NodeConnection NC in NodeConnections) { gc.Connect(NC.From.Item, NC.To.Item); } }