导致堆栈溢出异常的表单引用

本文关键字:表单 引用 异常 栈溢出 堆栈 | 更新日期: 2023-09-27 17:56:04

我收到此错误:

Microsoft.VisualStudio.HostingProcess.Utilities 中发生了类型为"System.StackOverflowException"的未处理异常.dll

每当我创建类时:

class Trader : Form1
{
    public void changeText(string text) {
        changeLabel(text) //A method inside my Form1.Designer.cs
    }
}

我觉得我做错了,我想访问和修改设计元素在我正在使用的Windows表单(Form1)中。有什么想法吗?

导致堆栈溢出异常的表单引用

我在类 Form1 中称该类为交易者。