我有一个项目,需要做一层Containers。
集装箱必须有类似的东西:
Form.Opacity = 0;
用户可以看到顶层下的元素,但不能使用它们。
我看到了许多具有透明背景的示例,但在我看来,我需要移动这个容器上的元素。更好的发现:
class xPanel : Panel
{
public xPanel()
{
SetStyle(ControlStyles.Opaque, true);
}
protected override CreateParams CreateParams
{
get
{
CreateParams createParams = base.CreateParams;
createParams.ExStyle |= 0x00000020; // WS_EX_TRANSPARENT
return createParams;
}
}
protected override void OnPaint(PaintEventArgs e)
{
//PaintParentBackground(e);
e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(0, Color.White)),
0, 0, Width, Height);
}
public void InvalidateEx()
{
if (Parent == null)
return;
Rectangle rc = new Rectangle(this.Location, this.Size);
Parent.Invalidate(rc, true);
}
}
但是在拖动元素时会有轨迹,或者在重新绘制时会闪烁。
我不知道如何解决这个问题。有想法吗?
我使用InvalidateEx(),在:中
protected override void OnLocationChanged(EventArgs e)
{
if (Parent != null)
((xPanel)Parent).InvalidateEx();
}
尝试添加
protected override OnPaintBackground(...)
{
//base.OnPaintBackground(...);
}
所以不要重新绘制背景,至少应该去掉闪烁。
希望这能有所帮助。
如果使面板的BackColor和TransparancyKey属性相同,则面板将是透明的。但是尽量选择一种不常用的颜色。