4

使用 ReportViewer 后出现此错误。退出时出现此错误。不知道是什么原因造成的。我正在使用 C#。

4

1 回答 1

15

这是已报告的Microsoft 错误。有一个解决方法 -reportViewer.LocalReport.ReleaseSandboxAppDomain()在关闭父表单之前调用方法。

例子:

private void frmMyForm_FormClosing(object sender, FormClosingEventArgs e)
{
    reportViewer1.LocalReport.ReleaseSandboxAppDomain();
}

参考:在 WPF 中打开报表查看器时的奇怪行为

于 2012-09-29T18:41:45.567 回答