I have created a little RSS-Reader, which displays content with the help of a Stackpanel and TextBox:
<StackPanel Grid.Column="1" Orientation="Vertical" Width="600">
<TextBlock Text="{Binding Title}" FontWeight="ExtraBold" Width="600"/>
<TextBlock Text="{Binding Description}" TextWrapping="Wrap" Width="600"/>
<TextBlock nav:NavigationService.Text="{Binding Link}" Width="600"/>
<TextBlock Text="{Binding PublicationDate}" HorizontalAlignment="Right" FontWeight="Thin"/>
</StackPanel>
I won't go into too much detail here, but this is how it looks like:
As you can see, there are HTML-Tags like <p> and <u>, which I would like to parse correctly. Doing that in the application itself could be problematic, as I'd have to check for every possible tag.
Is there some sort of component which does that automatically? If not, what is the best approach to this problem?
