I have a some of html strings that my application generates. Each html ‘snippet’ is stored as a collection of strings. I need to display some of these according to the user query. What is the usual way to display html stylized texts in Windows Forms.
Share
You can embed IE in Windows Forms with the WebBrowserControl. You might be able to stream the text in, otherwise you might have to write to a file and point the control to that file.