Visual Studio崩溃了! - 枚举器实例化后修改了集合

时间:2011-09-03 14:52:39

标签: c# .net visual-studio-2010 debugging user-controls

嘿,我有一个UserControl不断崩溃我的Visual Studio。 所以我运行了VS的另一个实例并调试了另一个VS,这就是我想的:

Collection was modified after the enumerator was instantiated.

这是我的阵列:

    private static Color[] colors = 
    {
        Color.FromArgb(155, 188, 255), //    40000
        Color.FromArgb(156, 189, 255), //    39500
        Color.FromArgb(157, 188, 255), //    39000
        Color.FromArgb(156, 189, 254), //    38500
    };

这是我的循环崩溃了商务

    public Heater()
    {
        InitializeComponent();
        this.tarTemp = this.curTemp;
        new Thread(() => UpdateTemp(true)).Start(); 
    }

    private delegate void UpdateTempDelegate(bool loop);
    private void UpdateTemp(bool loop)
    {
        if (lblTemp.InvokeRequired)
        {
            UpdateTempDelegate del = new UpdateTempDelegate(UpdateTemp);
            lblTemp.Invoke(del, loop);
        }
        else
        {
            do
            {
                lblTemp.Text = curTemp + C;
                if (curTemp >= 0)
                {
                    int i = curTemp - 10;
                    if (i < 0)
                        i = 0;
                    if (i > colors.Length - 1)
                        i = colors.Length - 1;
                    this.BackColor = colors[i]; // I'M CRASHING !!!
                }
            } while (loop && !this.Disposing);
        }
    }

崩溃Visual Studio Designer的行是this.BackColor = colors[i];

以下是正在运行的主题的图像:

Threads

所有线程停在同一行...... this.BackColor = colors[i];

以下是 EventViewer 崩溃日志:

Application: devenv.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.InvalidOperationException
Stack:
   at System.ThrowHelper.ThrowInvalidOperationException(System.ExceptionResource)
   at System.Collections.Generic.SortedList`2+SortedListValueEnumerator[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]].MoveNext()
   at Microsoft.VisualStudio.Shell.ServiceProviderHierarchy.GetService(System.Type)
   at System.ComponentModel.Design.ServiceContainer.GetService(System.Type)
   at System.ComponentModel.Design.DesignerHost.GetService(System.Type)
   at System.ComponentModel.Design.DesignerHost+Site.System.IServiceProvider.GetService(System.Type)
   at System.Windows.Forms.Control.get_AmbientPropertiesService()
   at System.Windows.Forms.Control.get_BackColor()
   at System.Windows.Forms.Control.set_BackColor(System.Drawing.Color)
   at Multiplier.Heater.UpdateTemp(Boolean)
   at Multiplier.Heater.<.ctor>b__0()
   at System.Threading.ThreadHelper.ThreadStart_Context(System.Object)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
   at System.Threading.ThreadHelper.ThreadStart()

这是我到目前为止遇到的最奇怪的事情。 帮助应该是适当的。

2 个答案:

答案 0 :(得分:3)

正如您所发现的那样,您的代码会让设计师崩溃,并将VS降低。问题是你在设计模式下启动一个线程,由设计者在设计时运行你的一些代码触发。例如,它将运行构造函数,Load事件,OnHandleCreated等。这样可以获得非常好的设计时体验,您的控件看起来就像在运行时一样。

但这也可能导致很多问题。您必须避免运行在不同的执行上下文中运行时可能导致异常的代码。经典示例尝试在不指定完整路径的情况下打开文件,打开与dbase服务器脱机或无法访问的dbase连接。并且肯定启动一个线程,InvokeRequired不会可靠地工作,因为设计器构造并销毁本机窗口句柄。修复很简单:

public Heater()
{
    InitializeComponent();
    this.tarTemp = this.curTemp;
    if (!this.DesignMode) {
        new Thread(() => UpdateTemp(true)).Start(); 
    }
}

您需要做更多工作,此代码在运行时也无法正常工作。当关闭用户控件的表单时,线程代码将弹出。一旦你解决了这个问题,现在它在设计时也可以正常工作。但不要。

答案 1 :(得分:0)

您是否使用任何其他代码修改集合?通常,当您在循环中枚举集合并尝试修改集合时会发生这种情况。