有没有办法检索我们使用设置的本地参数

 this.reportViewer1.LocalReport.SetParameters(new ReportParameter("UserComments", _userComments));


谢谢,

最佳答案

使用LinQ,您可以执行以下操作:

    List<ReportParameterInfo> parameters = ReportViewer1.LocalReport.GetParameters().Where(t => t.Name == "UserComments").ToList();
    ReportParameterInfo userCommentsParams = parameters[0];
    string comments = userCommentsParams.Values[0];

08-26 15:17