我有一个 MainForm,我在其中打开另一个表单,现在我有一个类,它为我提供了一些我编写的函数一个函数获取主表单的引用以及打开的表单和其他参数的引用我在打开的表单中调用函数并引用 MainForm 我使用 this.Parent 但我收到错误“对象引用未在对象的实例上设置”。
*ClientSide 是我的 MainForm *LogIn 是我在 mainform 中打开的表单,我在其中调用 RunListener 方法
class ServicesProvider
{
public static void RunListener(ClientSide MainForm,LogIn LogForm,System.Net.Sockets.TcpClient Client)
{
//Doing my things with the parameters
}
}
此代码在登录表单中
private void BtLogIn_Click(object sender, EventArgs e)
{
Thread Listener = new Thread(delegate()
{
ServicesProvider.RunListener((ClientSide)this.Parent,this,tcpClient);
});
Listener.Start();
}
问题是,每当我调试时,我都会收到我告诉你的错误,我发现代码“(ClinetSide)this.parent”指的是null。我需要参考主表单才能对其进行处理并更改一些值。