mono
mono

Reputation: 131

Different Fonts in one Label

does anybody know a way how to create a Label(WindowsForms) with two different Fonts or at least two different FontSizes?

Upvotes: 3

Views: 6539

Answers (4)

user9648008
user9648008

Reputation: 1

you can do that things with usercontrol wpf first of all from add item search usercontrol and after that in the xml of builder name grid like t1 and in the code of it type this code

    StringBuilder sb = new StringBuilder();
    sb.Append(@"<TextBlock   xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' 
                    xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'> ");
    sb.Append(@"  Hello <Bold>my</Bold> faithful <Underline>computer</Underline>.<Italic>You rock!</Italic>");
    sb.Append(@"</TextBlock> ");
    TextBlock myButton = (TextBlock)XamlReader.Parse(sb.ToString());
    t1.Children.Add(myButton);

and run it and change it in a new manner.

Upvotes: -1

Shashi
Shashi

Reputation: 71

You have to create your own drawing using GDI also try to find out if you can find any other third party controls that support your need !! Hopefully you might get them.

Upvotes: 2

KV Prajapati
KV Prajapati

Reputation: 94645

Try to override or handle paint event (method) use classes from System.Drawing namespace.

Upvotes: 2

Marco
Marco

Reputation: 57573

I think you should override default label onPaint method and draw multiple text/fonts manually using Graphics.
Take a look at this example.

Upvotes: 5

Related Questions