我正试图从Winforms中只有1个对象的列表中启动报告。这是我启动它的代码。
public InformePartido(List<Partido> partidos)
{
InitializeComponent();
var reportDataSource = new ReportDataSource("Partido", partidos);
reportViewer1.LocalReport.DataSources.Add(reportDataSource);
reportViewer1.RefreshReport();
}
我在报告向导中执行了这些步骤
我在做什么错了?