我收到此错误:
未处理的类型' System.StackOverflowException'发生在Microsoft.VisualStudio.HostingProcess.Utilities.dll
中
每当我创建课程时:
class Trader : Form1
{
public void changeText(string text) {
changeLabel(text) //A method inside my Form1.Designer.cs
}
}
我觉得我做错了,我想访问和修改设计元素 在我正在使用的Windows窗体(Form1)中。有什么想法吗?
答案 0 :(得分:-1)
我在Form1类中调用了Trader类。