不知为何错误
我做了两个窗口,Form1和Form2,点击Form1的某个菜单项应跳出Form2,代码如下:以下是Form1中的代码:
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Function_Ontology
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void 退出ToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Close();
}
private void 定义产品模型ToolStripMenuItem_Click(object sender, EventArgs e)
{
Form2 newform2 = new Form2(); //进入定义产品模型界面
newform2.Show();
this.Hide();
}
}
}
以下是Form2中的代码:
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Function_Ontology
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
}
}
但是运行后出现如下错误:
错误 1 找不到类型或命名空间名称“Form1”(是否缺少 using 指令或程序集引用?) F:\Function Ontology\Function Ontology\Program.cs 17 33 Function Ontology
错误 2 与“System.Windows.Forms.Application.Run(System.Windows.Forms.Form)”最匹配的重载方法具有一些无效参数 F:\Function Ontology\Function Ontology\Program.cs 17 13 Function Ontology
错误 3 参数“1”: 无法从“Form1”转换为“System.Windows.Forms.Form” F:\Function Ontology\Function Ontology\Program.cs 17 29 Function Ontology
不知为何错!!小弟是新手,请大家帮忙看看是怎么回事。谢谢!