Today I needed to create a simple grid which will hold some text information about some products and a few Hyperlink controls which when clicked need to display detailed information about particular product. On my big surprise WPF doesn't have Hyperlink control. This is really weird, but the solution is very simple. All you need to do is to use System.Windows.Documents.Hyperlink in a combination with TextBlock control.
XAML code for creating Hyperlink 'control' is then something like this:
<TextBlock>
<Hyperlink>
<TextBlock Text="Some text">
</Hyperlink>
</TextBlock>