共计 419 个字符,预计需要花费 2 分钟才能阅读完成。
在 Winform 中,如果需要跨线程关闭窗体,可以使用以下方法:
- 使用委托:定义一个委托类型,然后在需要关闭窗体的地方创建一个委托实例并调用窗体的 Close 方法。
public delegate void CloseFormDelegate();
public void CloseForm()
{if (this.InvokeRequired)
{this.Invoke(new CloseFormDelegate(CloseForm));
}
else
{this.Close();}
}
- 使用 BeginInvoke 方法:在需要关闭窗体的地方使用 BeginInvoke 方法异步调用窗体的 Close 方法。
if (this.InvokeRequired)
{this.BeginInvoke(new Action(() => this.Close()));
}
else
{this.Close();}
无论使用哪种方法,都可以确保在跨线程时安全地关闭窗体。
丸趣 TV 网 – 提供最优质的资源集合!
正文完