I have an image tha looks like this in my xaml file(WPF):
<Window x:Class="Client.HomePage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> ....... ........<Grid.Column="0" Grid.ColumnSpan="3" Grid.Row="1" Background="{StaticResource BackgroundBrush}" Focusable="False"><Image Grid.Column="3" Grid.Row="0" Margin="3,4,10,4" VerticalAlignment="Center" HorizontalAlignment="Right" Source="/Resources/Images/MyHomePageLogo.png" /></Grid></Window>
How do I add an hyperlink to my image, so that when I click on it, it goes to my home page on the web (for ex: http://www.myhomepage.com)