我有两个文件,一个是在 VS 中创建新的 WinForms 项目时生成的主表单文件,另一个包含我想在表单文件中使用的类。如何访问 Class 文件并在 Form 文件中使用该类?我认为这个项目将占用很多不同的类,我不希望它们阻塞表单文件。
namespace The_World //in the form file
{
public partial class The_Kingdom : Form
{
public The_Kingdom()
{
King foo = new King();
InitializeComponent();
}
}
}
// Below this is in the "The King" file
namespace The_World
{
public class King
{
bool goodKing; //just for an example
}
}
-- 编辑 -- 很抱歉打扰了大家,但感谢您的帮助。