I am using C# WinForms.
I want to display HTML formatted content in a Label control. Is it possible to do this? How can I do this?
A label is not meant to display formatted text. You can apply only one format to a label, which will be applied to the whole string.
If you want to display HTML-formatted text in a Windows Forms form, you'd better use a WebBrowser control instead of a label.
Source : http://www.codeproject.com/Answers/1121356/Display-HTML-formatted-string-in-to-label
1.4m articles
1.4m replys
5 comments
57.0k users