4

所以尝试了一段时间没有运气,我最终决定询问一种使透明控件相互显示的方法。

在此处输入图像描述

正如您在图片中看到的,我有 2 个透明图片框,它们很好地显示了背景,但是当涉及到所选图片框时,正如您在图片中看到的那样,它仅渲染表单的背景图像,而不渲染下面的其他图片框它。我知道由于缺乏适当的渲染,winforms 中存在一种常见情况,但问题是:

有没有办法解决这个渲染故障,有没有办法让透明控件相互渲染?

嗯,这就是答案:使用 C# WinForms 的透明图像

4

1 回答 1

3

控件的透明度取决于其父控件。但是,您可以使用自定义容器控件而不是父图像的图片框。也许此代码是完整的

    using System;
using System.Windows.Forms;
using System.Drawing;

public class TransparentControl : Control
{
    private readonly Timer refresher;
    private Image _image;

    public TransparentControl()
    {
        SetStyle(ControlStyles.SupportsTransparentBackColor, true);
        BackColor = Color.Transparent;
        refresher = new Timer();
        refresher.Tick += TimerOnTick;
        refresher.Interval = 50;
        refresher.Enabled = true;
        refresher.Start();
    }

    protected override CreateParams CreateParams
    {
        get
        {
            CreateParams cp = base.CreateParams;
            cp.ExStyle |= 0x20;
            return cp;
        }
    }

    protected override void OnMove(EventArgs e)
    {
        RecreateHandle();
    }


    protected override void OnPaint(PaintEventArgs e)
    {
        if (_image != null)
        {
            e.Graphics.DrawImage(_image, (Width / 2) - (_image.Width / 2), (Height / 2) - (_image.Height / 2));
        }
    }

    protected override void OnPaintBackground(PaintEventArgs e)
    {
       //Do not paint background
    }

    //Hack
    public void Redraw()
    {
        RecreateHandle();
    }

    private void TimerOnTick(object source, EventArgs e)
    {
        RecreateHandle();
        refresher.Stop();
    }

    public Image Image
    {
        get
        {
            return _image;
        }
        set
        {
            _image = value;
            RecreateHandle();
        }
    }
}
于 2013-02-16T19:23:09.733 回答