Hey,
I have having an annoying problem.
I am using WPFDiagram version 2.1.2.26299
I create the new node this way:
Point position = new Point((node.Bounds.Left * diagram.ZoomFactor / 100) + nodeWidth + 100,
node.Bounds.Top * diagram.ZoomFactor / 100 + nodeHeight / 2);
Size nodeSize = new Size(nodeWidth, nodeHeight);
newNode = d.Factory.CreateTableNode(position, nodeSize);
DiagramLink newLink = diagram.Factory.CreateDiagramLink(originNode, newNode);
Creating it works find. The generated links works well.
When I try to add a new link thru the UI, it will not allow me.
The properties are:
* AllowIncomingLink = true
* AllowOutgoingLink = true
* AllowDrop = true
* Lock = false
I can add new nodes by dragging them onto the diagram and I am able to add links to these. Just not to the nodes I create programmatically.
I can't figure it out.
Darren