.NET WinForms several styles in a label
Asked
Active
Viewed 395 times
1
-
1possible duplicate of [Formatting text in WinForm Label](http://stackoverflow.com/questions/11311/formatting-text-in-winform-label) – David Nov 04 '10 at 13:03
1 Answers
1
I used one of these:
- Use a container control (Panel) and add several labels each with its own style.
- Paint yourself by overriding using the Paint event

GvS
- 52,015
- 16
- 101
- 139
-
you don't have to paint yourself if you already have multiple label styles. +1, however – Daniel Mošmondor Nov 04 '10 at 15:21