AllowHtml

In WinForms applications there is no real way to format labels or have a mixed format inside them. Wisej.NET offers a powerful yet easy way to format content. This is done by setting AllowHtml property to true. It is available for almost any control and supports not only the labels but can also be used for the content of DataGridView columns, ComboBox entries etc.

Please note that AllowHtml is false for any Control by default. This is to avoid false parsing of HTML syntax characters like < or >. So if you want to use HTML in your Control you have to explicitly set AllowHtml to true.

Last updated