2

Possible Duplicate:
Make portion of a Label's Text to be styled bold

What is the standard / best practices way to achieve the effect of text formatting within a label in a standard .NET Windows Forms Application?

For example, I want a label I would programatically change. However, I might want a particular word in the label to be bold.

Note: VB.NET answer preferred, C# okay.

Community
  • 1
  • 1
Steven
  • 13,501
  • 27
  • 102
  • 146

1 Answers1

2

This is not possible with the built in label controls. Many third party vendors provide controls with this capability (via HTML-like markup). We have used Telerik's winform suite with success for this.

Reddog
  • 15,219
  • 3
  • 51
  • 63