Is there any detailed document or any description avaible to understand the way virtualization implemented in Diagram in goxam other than Topic: Performance considerations posted by walter
To add node 1
this.rcDiagram.Model.AddNode(ND1);
To add node 2
this.rcDiagram.Model.AddNode(ND2);
To add link beteween nodes...
this.rcDiagram.Model.AddLink(ND1, "3", ND2,"2")
can we implmented virtualization concept with above code structure because in the Virtualization implementation as posted by Walter...they have ObservableCollection and observableCollection..... But we have not implemnted like this....Our code implementation is highlighted in blue code....