I would like to show HTML snippets in my form. I looked through several examples on the Internet regarding the use of a web form or document layout, etc., and nothing works for me.
We have a system on our website where a user can enter a notification using the Real Text Editor (CKEditor). The message is saved in the database, and the WPF application on all computers in the office should display the message.
I want to support HTML in my WPF program. HTML is not on the page, it is part of the HTML in db that should be rendered in a visualized form in a WPF application.
For example, if someone logs into <img src="http://www.google.com/google.jpg" />
, he will show the image in the wpf application when I extract it from the database and show it in the form.
What is the best way to do this?
PS I can’t use a web browser because Windows "AllowTranparency" is set to true.
source share