gpt4 book ai didi

c# - 为什么这一行代码会导致 Visual Studio 崩溃?

转载 作者:行者123 更新时间:2023-11-30 19:26:18 24 4
gpt4 key购买 nike

只需一行代码,我就能使 VS2012 持续崩溃。 (“崩溃”是指当我点击 Build 时,Visual Studio 无限期挂起,我必须从任务管理器中将其终止。)这是代码(在自定义用户控件中):

public class TransparentPanel : System.Windows.Forms.Panel
{
protected override void OnPaintBackground(PaintEventArgs pe)
{
this.Invalidate(); //this is the offending line
}
}

要重现该问题,请根据上述代码创建一个控件并将其添加到 Windows 窗体;然后尝试构建解决方案。 “Build started...”将显示在状态栏中,然后 VS 将立即永久卡住。我试过 troubleshooting ,使用 devenv/log,但事件日志未显示任何错误或警告。所以我的问题是,为什么这段代码对 C# 编译器来说是致命的?(它也会在 IDE 中引起问题。例如,在添加这个透明控件之后,每当 Form Designer打开。)

附带问题:这个错误应该报告给微软吗?如果是这样,如何? (我试图在 the MS Connect site 上提交错误,但显然他们只接受 VS2013 的错误。)


[如果您想知道我尝试使用那条线的背景,请继续阅读。]

我为应用程序创建了自定义(Windows 窗体)控件。 (我试图创建一个带有部分透明图像的控件,其位置可以通过鼠标交互进行更改。)我使用了以下代码,它为我提供了具有我正在寻找的透明度的图像(在面板上):

public class TransparentPanel : System.Windows.Forms.Panel
{
public Image Image { get; set; }

protected override void OnPaint(PaintEventArgs pe)
{
Rectangle rect = new Rectangle(this.Location, this.Size);
if (Image != null)
pe.Graphics.DrawImage(Image, this.DisplayRectangle);
}

protected override void OnPaintBackground(PaintEventArgs pe)
{
//this.Invalidate();
Brush brush = new SolidBrush(Color.FromArgb(0, 0, 0, 0));
pe.Graphics.FillRectangle(brush, pe.ClipRectangle);
}

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

但是,透明度不会“粘住”。当控件被重新定位时,例如使用此事件处理程序:

    private void transparentPanel1_MouseClick(object sender, MouseEventArgs e)
{
int y = this.transparentPanel1.Location.Y ;
int x = this.transparentPanel1.Location.X ;
this.transparentPanel1.Location = new System.Drawing.Point(x-5, y-5);
}

...控件的透明部分保留与第一次绘制时相同的背景。 (这只有在另一个控件放在它后面时才能看到。抱歉,很难描述。)所以我试图使用 Invalidate() 重绘控件,因此重绘透明部分以匹配搬迁后控件背后的任何内容。这是 VS 错误出现的时候。 (实际上我并没有立即注意到这个错误,所以隔离有问题的代码行是相当痛苦的。)

最佳答案

public class TransparentPanel : System.Windows.Forms.Panel
{
protected override void OnPaintBackground(PaintEventArgs pe)
{
this.Invalidate(); //this is the offending line
}
}

这类似于无限循环。

当你重绘面板时,你的处理程序被调用......你告诉它使自己无效......这会导致重绘......调用你的处理程序......等等。

设计师失去了理智。您不需要或不想从 OnPaintBackground 中使控件无效,除非它是有条件的(仍然很少见)。

关于c# - 为什么这一行代码会导致 Visual Studio 崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23938482/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com