Reputation: 101
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
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.silverlightshow.net/news/Bindable-WPF-RichText-Editor-with-XAML-HTML-Convertor-.aspx
Upvotes: 1