Been toying around with the “coaster” WPF only to learn that no HyperLink control is present! Come on – what’s that about?
Well - it can by created by nesting 3 controls like this simple construct using the System.Windows.Documents.HyperLink control:
<!--"Hyperlink" control (copy to clipboard)-->
<TextBlock>
<Hyperlink Click="Hyperlink_Click">
<TextBlock ToolTip="Copy to Clipboard...">Copy</TextBlock>
</Hyperlink>
</TextBlock>
Pure and simple. It could be wrapped into a WPF-control if you wish, but then again…