up vote 3 down vote favorite
1
share [g+] share [fb]

I'm dynamically building a WPF FlowDocument from a datasource. One of the data elements is a fragment of HTML - I need to figure out a way to parse that and insert it into my FlowDocument.

I've found HTMLToXAMLConverter which will return a XAML representation of the HTML, but I'm still not sure how to best go about instantiating that XAML fragment so I can insert it into my FlowDocument.

link|improve this question

76% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Answered my own question...

System.Windows.Markup.XamlReader.Parse()
link|improve this answer
feedback

Had same problem, but had to solve databinding problems as well

Had a convector that created XAML from string and vice-verse.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.