在C#中设置轮廓颜色的字体

前端之家收集整理的这篇文章主要介绍了在C#中设置轮廓颜色的字体前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在代码中动态添加标签到面板.

我想做的是能够勾勒出字体,从而可以从面板的背景色中脱颖而出.

问题是我不知道如何使用Winforms在C#中为我的字体创建一个轮廓,甚至创建一个阴影效果.

任何人都知道我应该看什么,还是指向正确的方向?
如果你不明白我的意思,下面的图片是我想要的:(外衬)

解决方法

我想你必须定制油漆你自己的控制.这是Label的一个例子.请注意,这只是一个演示,您应该尝试在winforms中找到更多关于自定义绘画的内容
public class CustomLabel : Label
{
    public CustomLabel()
    {
        OutlineForeColor = Color.Green;
        OutlineWidth = 2;
    }
    public Color OutlineForeColor { get; set; }
    public float OutlineWidth { get; set; }
    protected override void OnPaint(PaintEventArgs e)
    {
        e.Graphics.FillRectangle(new SolidBrush(BackColor),ClientRectangle);
        using (GraphicsPath gp = new GraphicsPath())
        using (Pen outline = new Pen(OutlineForeColor,OutlineWidth)
            { LineJoin = LineJoin.Round})
        using(StringFormat sf = new StringFormat())
        using(Brush foreBrush = new SolidBrush(ForeColor))
        {
            gp.AddString(Text,Font.FontFamily,(int)Font.Style,Font.Size,ClientRectangle,sf);                                
            e.Graphics.ScaleTransform(1.3f,1.35f);
            e.Graphics.SmoothingMode = SmoothingMode.HighQuality;
            e.Graphics.DrawPath(outline,gp);                
            e.Graphics.FillPath(foreBrush,gp);                            
        }
    }
}

您可以通过OutlineForeColor属性更改轮廓颜色,您可以通过OutlineWidth属性更改轮廓宽度.当您在设计器中更改这些属性时,效果不会立即应用(因为没有任何代码可以做到这一点,我想保持简短和简单),效果仅在表单被集中时才应用.

您可以添加更多的内容是将TextAlign映射到StringFormat的对齐方式(在代码中名为sf),还可以覆盖一些事件提升方法,以增加对外观的控制(例如,在鼠标时更改ForeColor在标签上…).您甚至可以创建一些阴影效果和发光效果(它需要更多的代码).

原文链接:https://www.f2er.com/csharp/95860.html

猜你在找的C#相关文章