I have an html page that only contains <p>
, <strong>
, <br />
and <a>
tags. I want to show this content in a XAML TextBlock
in Windows 8. Is there any way to show that content in a TextBlock
without losing the structure (e.g. paragraphs)? I don't want to use WebView
because WebView
can not be transparent.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
If you want to do it in XAMl, just add a converter.
Then in your XAML add a resource reference.
Then Bind with a converter:
Text="{Binding titleFull,Converter={StaticResource TextToHtmlConverter}}"
I am developing a open source Windows 8 Metro RSS Reader app and I used HtmlUtilities.ConvertToText
You can see the source code implementation here http://metrorssreader.codeplex.com/SourceControl/changeset/view/17913#265003