我经常搜索,看过几个例子,但至少对我来说不起作用。这就是我需要的:在我的应用程序中,我需要为工具栏使用透明的PNG图标,也需要使用可拖动的可视对象表示,即72x72“页面”图标,可以在客户区域中的所有元素上拖动。首先我考虑使用一个按钮,将其BackImage设置为透明PNG并将BackColor设置为“透明”:它不起作用,按钮总是显示背后的纯色。至于面板,同样的问题:我可以将透明PNG作为背景图像,但控件永远看起来“透明”,其中PNG具有透明区域。我认为同样的图片框和任何其他控件允许图像背景。所以我想,这真的是让控件的背景变得透明......有什么想法吗?
我不在乎是否需要创建某种自定义的“图像按钮”或“图像面板” - 无论如何 - 要有真正的PNG透明按钮,面板等!此外,请注意,它是关于PNG透明度,使用alpha通道,而不是透明像素,在这个年龄段,吮吸恕我直言体面的图书馆。
干杯
litium
答案 0 :(得分:1)
好的,我发现以下代码不仅适用于面板,也适用于按钮,我猜其他控件 - 除了PictureBox:
public class TransparentPanel : Panel <==change to Button for instance, and works
{
Timer Wriggler = new Timer();
public TransparentPanel()
{
Wriggler.Tick += new EventHandler(TickHandler);
this.Wriggler.Interval = 500;
this.Wriggler.Enabled = true;
}
protected void TickHandler(object sender, EventArgs e)
{
this.InvalidateEx();
}
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x00000020; //WS_EX_TRANSPARENT
return cp;
}
}
protected void InvalidateEx()
{
if (Parent == null)
{
return;
}
Rectangle rc = new Rectangle(this.Location, this.Size);
Parent.Invalidate(rc, true);
}
protected override void OnPaintBackground(PaintEventArgs pevent)
{
// Do not allow the background to be painted
}
}
100%为我服务!似乎不适用于PictureBoxes。