问题描述
解决方案
MainForm这个窗体类是否存在?
如果存在,打开它的源代码
其中有 namespace xxxx 这样一行字。(也有可能是xxxx.xxxx的形式)
把xxxx复制下来,粘贴在你这个代码的MainForm前面
比如
Application.Run(new xxxx.MainForm());
解决方案二:
把MainForm这个类代码导入,using
解决方案三:
将光标移到MainForm ,然后键盘按 ctrl+>
解决方案四:
找到mainform所在的命名空间,然后using一下,比如
using WindowsFormsApplication1
时间: 2024-11-03 04:08:16