How to connect link to an other link

In the pdf file (GoXamIntro.pdf), it says that it’s possible to connect a link to other links (look at page 5). Is there any examples of how we should do that?

There isn’t such a sample in GoWpfDemo or GoSilverlightDemo.

Maybe I can make a quick sample for you.

Yes, it would be really appreciated <span =“Apple-style-span” style="font-size: 11px; line-height: 13px; : rgb248, 248, 252; ">walter.

OK, try this simple sample: LinksToLinks.

Here is a screenshot:

After copying everything, inserting a new node (by double-clicking in the background), drawing a new link to the copied link, and relinking the link from A to B to the new link:

One thing I forgot to mention in the sample is that if you want to change where that link label node is on the link’s route, you use the same LinkPanel attached properties that you do for regular text labels or arrowheads. For example:
<Ellipse go:LinkPanel.Index=“0” go:LinkPanel.Fraction=“.8” … />
This will position it 80% of the way on the first segment, which in this case is the only segment, of the route.

Cool! That’s exactly what I wanted to do.
Thank you for the quick answer. Really appreciated!