控制以控制透明度

时间:2013-02-16 19:13:10

标签: c# winforms

因此,在没有运气的情况下尝试了一段时间,我最终决定询问一种方法,让透明控件相互显示。

enter image description here

正如你在图片中看到的那样,我有2个透明的图片框,它们可以很好地显示背景,但是当它出现在所选择的图片框中时,你可以看到它只能渲染表单的背景图像而不是其他图像它下面的图片框。我知道由于缺乏正确的渲染,winforms中存在一些常见情况,但问题是:

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

这就是答案:Transparent images with C# WinForms

1 个答案:

答案 0 :(得分:2)

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

    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();
        }
    }
}