Alexander Smirnov 2015-05-20 11:06:21 +03:00
Родитель 094c54edbb 798e8ac361
Коммит 4382a8c7f4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1515,7 +1515,7 @@ namespace GraphX.WPF.Controls
if (datasource == null || datatarget == null)
throw new GX_SerializationException("DeserializeFromFile() -> Serialization logic is broken! Vertex not found. All vertices must be processed before edges!");
var ecc = new EdgeControl { Edge = edgedata, Source = _vertexlist[datasource], Target = _vertexlist[datatarget], DataContext = edgedata};
var ecc = ControlFactory.CreateEdgeControl(_vertexlist[datasource], _vertexlist[datatarget], edgedata);
InsertEdge(edgedata, ecc);
LogicCore.Graph.AddEdge(edgedata);
}