The windows form that I designed has 1 label. The text of this label changes dynamically depending on what data the user selects. Currently i’m creating a string and assigning it to the label’s text property. I need a way to make certain parts of the string that I am creating bold. How can I accomplish this in c#?
Share
You would need to use a custom control for this. You could either write your own or you can use an existing control. On CodeProject there is a control, GMarkupLabel, that looks good.