0
今天我用這種方式來設置文本框,通過stringParameterC#RDLC設置文本框的文本wihout參數名字符串
ReportParameterCollection reportParameters = new ReportParameterCollection();
reportParameters.Add(new ReportParameter("ParameterName", "Value"));
this.reportViewer.LocalReport.SetParameters(reportParameters);
的問題是,不使用自動完成。所以如果參數名稱改變,建築物不會引發任何事情。有沒有更好的(安全)方法?