我需要将xtrareport(devexpress)绑定到对象模型。
假设我的模型是:
public class ReportViewModel
{
public Header Header { get; set; }
public Body Body { get; set; }
public Footer Footer { get; set; }
}
我已经通过设计师完成了模板报告。
如何使用C#从视图模型提供报告?
这个没有用
XtraReport1 report = new XtraReport1();
report.DataSource = viewModel;
提前致谢。
答案 0 :(得分:2)
仅将报告的DataSource设置为ViewModel是不够的,您还需要将控件绑定到适当的字段。以下是我为WinForms中的报告做了类似的事情:
public IssueReport(DataTable issuesTable)
{
InitializeComponent();
this.DataSource = issuesTable;
xrlabelIssueNumber.DataBindings.Add("Text", this.DataSource, "IssueID");
xrlabelAssignedUser.DataBindings.Add("Text", this.DataSource, "Assigned User");
xrlabelPriority.DataBindings.Add("Text", this.DataSource, "Priority");
xrlabelCategory.DataBindings.Add("Text", this.DataSource, "IssueCategory");
xrlabelReceivedDate.DataBindings.Add("Text", this.DataSource, "ReceivedDate");
xrlabelDueDate.DataBindings.Add("Text", this.DataSource, "DueDate");
xrlabelProduct.DataBindings.Add("Text", this.DataSource, "Product");
xrlabelStatus.DataBindings.Add("Text", this.DataSource, "Status");
xrlabelSubStatus.DataBindings.Add("Text", this.DataSource, "Sub-Status");
xrlabelVersion.DataBindings.Add("Text", this.DataSource, "VersionNumber");
xrlabelCustomer.DataBindings.Add("Text", this.DataSource, "CustomerName");
xrlabelLocation.DataBindings.Add("Text", this.DataSource, "LocationName");
xrlabelRoom.DataBindings.Add("Text", this.DataSource, "RoomName");
xrlabelPOC.DataBindings.Add("Text", this.DataSource, "POC");
xrlabelOfficeNumber.DataBindings.Add("Text", this.DataSource, "OfficePhone");
xrlabelCallbackNumber.DataBindings.Add("Text", this.DataSource, "CallbackNumber");
xrlabelEmail.DataBindings.Add("Text", this.DataSource, "Email");
xrlabelAlternateEmail.DataBindings.Add("Text", this.DataSource, "AlternateEmail");
xrlabelSummary.DataBindings.Add("Text", this.DataSource, "IssueSummary");
}
DataBindings.Add
方法有3个参数; 1st是要绑定到的对象的属性(99%的时候它是XtraReportLabel的Text
属性)。第二个是BindingSource(在你的情况下,你的ViewModel ......但是这可能需要首先转换为某种类型的BindingList)。第3个是您要使用的BindingSource的字段。
希望有所帮助....
答案 1 :(得分:0)
您必须发送列表。
var viewModelList = new List<ReportViewModel>(){viewModel};