0

我正在用 C#(本地报告)编写报告应用程序。我已经制作了报告模式(rdlc 文件),现在由于用户的本地化,我正试图让它们自动翻译。我已经设法使用资源文件进行了一次翻译(一个字段的翻译,但其中有很多),但这需要我在报告中使用的每个文本框的参数:

ReportParameter p = new ReportParameter("Report1Parameter3", GlobalStrings.FieldText);
this.reportViewer1.LocalReport.SetParameters(p);

有什么方法可以使它比为每个文本字段使用附加参数更“直接”?

4

2 回答 2

1

这一直是我的桌面应用程序中的解决方案。假设您有一个单独的资源文件存储在应用程序的同一文件夹中,并使用名为Reports.resx的 resx 文件创建并命名为Resources.dll并具有公共访问权限

第1步

设置本地报告的权限(每次重置后都应重复此操作)

<YourReportViewer>.LocalReport.SetBasePermissionsForSandboxAppDomain(new PermissionSet(PermissionState.Unrestricted))

第2步

在您的 rdlc 报告中添加以下代码(在报告属性下或手动编辑 rdlc 文件,在<Report>/<Code>标签下添加代码)

Private Shared Resources As Type = Reflection.Assembly.LoadFile(IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Resources.dll")).GetType("Resources.Reports")

Default Public ReadOnly Property Item(name As String) As String
    Get
        Return Resources.GetProperty(name, Reflection.BindingFlags.Static Or Reflection.BindingFlags.Public).GetValue(Nothing).ToString()
    End Get
End Property

第 3 步

在您的报告中,您可以使用如下表达式引用资源中的字符串:

=Code!<NameOfYourResource>
于 2014-12-16T07:54:43.870 回答
0

我认为您应该将所有字段放入数据集,并在为每个用户绑定数据之前处理翻译。

于 2013-10-29T10:12:31.380 回答