Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a control for a .Net WinForm app that will display HTML

Tags:

c#

.net

winforms

I have a .net (3.5) WinForms application and want to display some html on one of the forms. Is there a control that I can use for this?

like image 631
Guy Avatar asked Dec 18 '22 10:12

Guy


2 Answers

Yep sure is, the WebBrowser control.

like image 170
Tim Jarvis Avatar answered Dec 19 '22 23:12

Tim Jarvis


I was looking at the WebBrowser control but couldn't work out how to assign (set) the HTML to it...?

EDIT: Found it - Document Text

like image 42
Guy Avatar answered Dec 19 '22 22:12

Guy