master
xaml 17 lines 809 Bytes
Raw
1 <UserControl
2 x:Class="WslSettings.Controls.HyperlinkTextBlock"
3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
6 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7 mc:Ignorable="d">
8
9 <TextBlock TextWrapping="WrapWholeWords">
10 <!-- Note: The comments in between the elements prevents extra space from being added to the string -->
11 <Run Text="{x:Bind TextBeforeHyperlink}" /><!--
12 --><Hyperlink NavigateUri="{x:Bind NavigateUri}">
13 <Run Text="{x:Bind HyperLinkText}" />
14 </Hyperlink><!--
15 --><Run Text="{x:Bind TextAfterHyperlink}" />
16 </TextBlock>
17 </UserControl>