I have a splashscreen that contains an image, and when you click it it closes, like:
<Canvas MouseLeftButtonUp="Image_MouseLeftButtonUp">
<Canvas.Background>
<ImageBrush ImageSource="pack://application:,,,/S3.ParametersUE.About;component/Resources/splash.jpg" />
</Canvas.Background>
</Canvas>
Now, in the image there's also some text like 'http://www.site.com'
Is there a way in WPF to make this part clickable, so that when it's clicked, the web page opens in the browser; so basically the same behavior as an image map?