Connecting two links without nodes

Hello!

Is it possible to connect two links without having to create a node to link them? I'm looking for connection like when you have two links connected together, and there is a little dot drawn in the spot of connection. Does it have to be the node? I also need it to move arround with the links, while dragging other nodes. Do you have any example regarding that problem?
Thanks in advance.

It depends on what you mean by “connect”. For example, if you just want to draw a circle when the routes of two links merge when connecting to the same port, look at http://www.nwoods.com/forum/forum_posts.asp?TID=2042.

But it also would be quite natural to actually have a GoPort on the link (a GoLabeledLink) to which another link could connect. In this scheme you would implement a subclass of GoPort that implemented the IGoLinkLabel interface provided in the Processor sample application, and your links would need to override LayoutChildren as shown in the documentation for IGoLinkLabel or in the FlowLink example class.
Actually, given your needs, you could simplify it by assuming the Offset is always (0, 0). You don't need any overrides of Paint or ExpandPaintBounds either, since you don't need to draw a line between the link and the GoPort/LinkLabel. Hmmm, so you don't need the LinkLabel.ConnectionColor property either.