如何更改任何对象在 LocalReport 中的位置。像 TextBox 或 Image 等等。例如尝试改变左坐标。我是这样尝试的:
ReportParameterCollection reportParameters = new ReportParameterCollection();
reportParameters.Add(new ReportParameter("ReportParameter1", "ValueFromCode"));
report.SetParameters(reportParameters);
但我无法在reportParameters 和元素位置之间建立链接。