13 minutes ago | LINK
In xaml, a hyperlink can be set as
<HyperlinkButton Content="Website" NavigateUri="mysite" TargetName="_blank"/>
then when user click on it, the link will open.
How all those can be done in code-behind: create hyperlink and open it?
Xaml
Code behind
or