Winforms Designer错误“解析EntityName时发生错误”

时间:2010-09-30 07:24:29

标签: c# winforms designer

我正在为winforms应用程序使用自定义控件代码来创建自定义彩色进度条。我可以构建它,它工作正常,但每次我尝试使用设计师,它崩溃。 “解析EntityName时发生错误”

  • 如果我从工具箱中添加this is what I get

  • 如果我插入进度条,请重新使用我的控件代码(将progressBar替换为progressBarEx),然后this is what I get

代码:

using System.Drawing;
using System.Windows.Forms;

namespace Crystal
{
public class ProgressBarEx : ProgressBar
{
    private SolidBrush brush = null;

    public ProgressBarEx()
    {
        this.SetStyle(ControlStyles.UserPaint, true);
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        if (brush == null || brush.Color != this.ForeColor)
            brush = new SolidBrush(this.ForeColor);

        Rectangle rec = new Rectangle(0, 0, this.Width, this.Height);
        if (ProgressBarRenderer.IsSupported)
            ProgressBarRenderer.DrawHorizontalBar(e.Graphics, rec);
        rec.Width = (int)(rec.Width * ((double)Value / Maximum)) - 4;
        rec.Height = rec.Height - 4;
        e.Graphics.FillRectangle(brush, 2, 2, rec.Width, rec.Height);
    }
}

}

1 个答案:

答案 0 :(得分:4)

Dominik aka galaris在他自己的问题中提供了答案。我把它清理干净并移到这里:

解决方案可以是found here。问题是我的某个文件夹包含&个字符。将项目移动到桌面文件夹解决了这个问题。