在其他控件上方显示带有半透明BackColor的标签?

时间:2015-12-17 12:56:16

标签: c# .net winforms

我有自定义控件,其中两个 PictureBox控件 动画标签控件超过他们。

设置子索引,使标签始终位于顶部,但图片框正在互换,因此在动画时,每次都会显示不同的图像。

据我所知,标签需要有一个父控件,它可以支持半透明颜色(Argb)。由于标签有活动图片框作为其父级,因此它也将被动画化,而这根本不是我想要的。

有没有办法确定孩子相对于父母的位置?

1 个答案:

答案 0 :(得分:4)

要拥有透明标签控件,您可以覆盖OnPaint方法并绘制与标签相交的所有控件,最后绘制标签的背景和文本。

同样在移动图片框时,请不要忘记调用透明标签的Invalidate()方法。

<强>截图

enter image description here

示例实施

public class TransparentLabel : Label
{
    public TransparentLabel()
    {
        this.transparentBackColor = Color.Blue;
        this.opacity = 50;
        this.BackColor = Color.Transparent;
    }
    protected override void OnPaint(PaintEventArgs e)
    {
        if (Parent != null)
        {
            using (var bmp = new Bitmap(Parent.Width, Parent.Height))
            {
                Parent.Controls.Cast<Control>()
                      .Where(c => Parent.Controls.GetChildIndex(c) > Parent.Controls.GetChildIndex(this))
                      .Where(c => c.Bounds.IntersectsWith(this.Bounds))
                      .OrderByDescending(c => Parent.Controls.GetChildIndex(c))
                      .ToList()
                      .ForEach(c => c.DrawToBitmap(bmp, c.Bounds));


                e.Graphics.DrawImage(bmp, -Left, -Top);
                using (var b = new SolidBrush(Color.FromArgb(this.Opacity, this.TransparentBackColor)))
                {
                    e.Graphics.FillRectangle(b, this.ClientRectangle);
                }
                e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
                TextRenderer.DrawText(e.Graphics, this.Text, this.Font, this.ClientRectangle, this.ForeColor, Color.Transparent);
            }
        }
    }

    private int opacity;
    public int Opacity
    {
        get { return opacity; }
        set
        {
            if (value >= 0 && value <= 255)
                opacity = value;
            this.Invalidate();
        }
    }

    public Color transparentBackColor;
    public Color TransparentBackColor
    {
        get { return transparentBackColor; }
        set
        {
            transparentBackColor = value;
            this.Invalidate();
        }
    }

    [Browsable(false)]
    public override Color BackColor
    {
        get
        {
            return Color.Transparent;
        }
        set
        {
            base.BackColor = Color.Transparent;
        }
    }
}