我有c#项目,其中我有表单,我想从另一个类访问该表单中的元素,我该怎么做?
我试过Form1 f1 = new Form1();
然后是f1.pictureBox
,但这不正确,
Form1 f1 = new Form1();
说{
An unhandled exception of type 'System.StackOverflowException' occurred in MMS-Lab1.exe
答案 0 :(得分:0)
调用new Form1()在Controller的构造函数之前的另一个名为Controller的类中。 堆栈溢出是由Form1 f1 = new Form1()引起的,为什么会这样?