我收到错误我的代码中的 Forte Sender.exe 中发生了“System.StackOverflowException”类型的未处理异常。我知道这意味着我的代码中有一个无限循环,但我似乎找不到这个循环。这是我的代码:
表格1:
public partial class MainBox : Form
{
//Making a name for the ApplicationProperties form. It can be opened when called.
ApplicationProperties ApplicationPropertiesWindow = new ApplicationProperties();
//All of the functions for form1 below.
表格2:
public partial class ApplicationProperties : Form
{
MainBox MainBoxWindow = new MainBox();
//All of the funcitons for form2 below.
所以我注意到如果我取出MainBox MainBoxWindow = new MainBox();
程序将正确运行。但我需要那个实例来调用 Form1 中的函数。我怎样才能解决这个问题?调用函数或解决无限循环的不同方式。