我想通过点击其他表单中的按钮来关闭表单。
我要关闭的表单是BreakEndOptions.h
,要点击的按钮的格式为Confirmation.h
我已将BreakEndOptions.h
添加到Confirmation.h
的标头中。你如何访问它并执行关闭()?或者还有其他方法吗?
目前我尝试了BreakEndOptions::Close();
但是有一个错误说非静态成员引用必须与特定对象相关。
我也试过
BreakEndOptions^ break = gcnew BreakEndOptions;
break->Close();
但仍有错误。什么是正确的方法?