|
Group: Forum Members
Posts: 71,
Visits: 1
|
Hey, to solve this problem you need to add the event sink to the load diagram button as well. For instance, if you click on a button to load the diagram, then inside the onclick event of that button you need to include that code as well
nDrawingDocument1.EventSinkService.NodeDoubleClick += new NodeViewEventHandler(EventSinkService_NodeDoubleClicked);
that will fix the problem. I had the same problem, and that fixed it
|