Answer
Usual hyperlinks in Silverlight are not rendered as text and thus cannot be copies in contrast to regular web (html) applications. There two main approaches:
1. Place hyper link inside rich text box this would render hyperlink as text with all select/copy abilities
2. Place "copy" button next to the link and utilize Silverlight Clipboard API (in System.Windows.dll) to copy the link Clipboard.SetText(“myText”);
Usual hyperlinks in Silverlight are not rendered as text and thus cannot be copies in contrast to regular web (html) applications. There two main approaches:
1. Place hyper link inside rich text box this would render hyperlink as text with all select/copy abilities
2. Place "copy" button next to the link and utilize Silverlight Clipboard API (in System.Windows.dll) to copy the link Clipboard.SetText(“myText”);