Stef Dhollander
Stef Dhollander

Reputation: 101

C# html in xaml

I have the following problem:

So I have an HTML string with inputfields etc... And I have a usercontrol in xaml where I want to show this html. but when there's an input field there shoould be the possibility to change the text in the inputfield. And everything should be editable.

Upvotes: 0

Views: 691

Answers (1)

Kieren Johnstone
Kieren Johnstone

Reputation: 42023

You can do Rich Text editing in WPF, and you can convert the results to/from XAML, HTML, ..

Some resources to get you started:

http://www.developerfusion.com/community/blog-entry/8393336/bindable-wpf-richtext-editor-with-xamlhtml-convertor/

http://www.silverlightshow.net/news/Bindable-WPF-RichText-Editor-with-XAML-HTML-Convertor-.aspx

Upvotes: 1

Related Questions