I'm trying to learn UWP/XAML, and am trying to open the default email client when an email link is clicked. Here is what I have
<TextBlock FontSize="36" Foreground="Navy">
<LineBreak/>
<Run Foreground="Navy" FontFamily="Segoe UI Light" FontSize="36">
Contact This Person
</Run>
<LineBreak/>
<LineBreak/>
<Run Foreground="Navy" FontFamily="Segoe UI Light" FontSize="30">
Bob Smith
</Run>
<LineBreak/>
<Run Foreground="Navy" FontFamily="Segoe UI Light" FontSize="30">
123 Fake Street
</Run>
<LineBreak/>
<Run Foreground="Navy" FontFamily="Segoe UI Light" FontSize="30">
FooBar, Foo
</Run>
<LineBreak/>
<Run Foreground="Navy" FontFamily="Segoe UI Light" FontSize="30">
5551212
</Run>
<LineBreak/>
<Hyperlink NavigateUri="mailto:test@blahblah.com" >Email Bob</Hyperlink>
</TextBlock>
</StackPanel>
</Border>
When I click on the email link, I get a popup asking me if I want to switch to Chrome. Do I need .cs code, or can this all be handled in the XAML?