does anybody know a way how to create a Label(WindowsForms) with two different Fonts or at least two different FontSizes?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
I think you should override default label onPaint
method and draw multiple text/fonts manually using Graphics.
Take a look at this example.
回答2:
Try to override
or handle paint
event (method) use classes from System.Drawing
namespace.
回答3:
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.
回答4:
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.