All Questions
1 question
17
votes
3
answers
7k
views
Text wrapping in WPF hyperlink
In my WPF application I have this:
<StackPanel>
<TextBlock>
<Hyperlink>
<TextBlock TextWrapping="Wrap" Name="HyperlinkText" />
</Hyperlink>
</...