今天我用这种方式设置文本框,通过stringParameter
ReportParameterCollection reportParameters = new ReportParameterCollection();
reportParameters.Add(new ReportParameter("ParameterName", "Value"));
this.reportViewer.LocalReport.SetParameters(reportParameters);
问题是不要使用自动完成。因此,如果参数名称更改,则构建不会引发任何问题。有没有更好(安全)的方法?