我创建了一个简单的示例项目,我尝试将创建的对象连接到报表并通过 SyncFusion ReportViewer 查看它。
应用程序的主窗口如下所示:
<Window x:Class="testApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
Title="MainWindow" Height="350" Width="525" Loaded="OnWindowLoad">
<Grid>
<syncfusion:ReportViewer Name="reportViewer1" ReportPath="c:\Pool\test\testApp\testApp\Report1.rdlc" />
</Grid>
</Window>
然后我创建了 Person 类,我希望将其显示在报表的集合中。它看起来像这样:
namespace testApp
{
public class Person
{
private string m_name;
public string Name
{
get { return m_name; }
set { m_name = value; }
}
private int m_age;
public int Age
{
get { return m_age; }
set { m_age = value; } }
public Person(string name, int age)
{
Name = name;
Age = age;
}
}
}
然后,我创建了一个 .rdlc 报告文件并创建了一个名为 PersonDataSet 的数据集,该数据集使用以 Person 类为目标的对象数据源。
在报告中有一个表格,其中包含来自 PersonDataSet 的项目 - 姓名和年龄。
在应用程序主窗口的 Loaded 事件函数中,我尝试创建人员列表并将其传递给报告:
private void OnWindowLoad(object sender, RoutedEventArgs e)
{
var persons = new List<Person>
{
new Person("Jan", 25),
new Person("Jana", 24)
};
ReportDataSource source = new ReportDataSource
{
Name = "PersonDataSet",
Value = persons
};
reportViewer1.DataSources.Add(source);
reportViewer1.RefreshReport();
}
报表查看器没有加载包含人员数据的报表,而是无休止地加载..
知道我在做什么错吗?
谢谢