Advanced reporting
and data visualization components for .NET
LIVE CHAT Welcome, guest

 





Report in WPF from Collection Object
Display Posts for:
Invert
Stefano Pranzo 01/25/2020 21:53
Report in WPF from Collection Object

Report in WPF from Collection Object

Good morning.
I have a class so composed:
public class FatturaElettronica
{
/// <summary>
/// NameCostumer
/// </summary>
private string mNameCostumer;

/// <summary>
/// NameCostumer
/// </summary>
public string NameCostumer
{
get
{
return mNameCostumer;
}
set
{
mNameCostumer = value;
}
}

/// <summary>
/// Details
/// </summary>
private ObservableCollection<FatturaElettronicaRow> mDetails;

/// <summary>
/// Details
/// </summary>
public ObservableCollection<FatturaElettronicaRow> Details
{
get
{
return mDetails;
}
set
{
mDetails = value;
}
}
}

I need to be able to generate a Master Detail Report with the data of this class.
I can't find any examples of how to pass the class as a data source to the report in WPF. only WinForm with the ReportManager. But in WPF I don't find the Report Manager.
How can I do?
Thank you.