Different Fonts in one Label
does anybody know a way how to create a Label(WindowsForms) with two different Fonts or开发者_JAVA百科 at least two different FontSizes?
I think you should override default label onPaint
method and draw multiple text/fonts manually using Graphics.
Take a look at this example.
Try to override
or handle paint
event (method) use classes from System.Drawing
namespace.
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.
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.
精彩评论