为什么这一行代码会导致Visual Studio崩溃
本文关键字:Visual 崩溃 Studio 代码 一行 为什么 | 更新日期: 2023-09-27 18:05:59
只需一行代码,我就可以导致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窗体中;则尝试CCD_ 2。"Build started…"将显示在状态栏中,然后VS将立即永久冻结。我尝试使用devenv/log进行故障排除,但活动日志没有显示任何错误或警告。所以我的问题是,为什么这段代码对C#编译器来说是致命的(这也会导致IDE出现问题。例如,添加此透明控件后,只要打开窗体设计器,"属性"窗格就会冻结。(
附带问题:是否应该向Microsoft报告此错误?如果是,如何?(我试图在MS Connect网站上提交错误,但显然他们只接受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
中的控件无效,除非它是有条件的(仍然很少见(。