12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="utf-8"?>
- <Report ScriptLanguage="CSharp" ReportInfo.Description="This report demonstrates how to use the application business objects. - register the list of business objects using the Report.RegisterData method. The list must be of IEnumerable type." ReportInfo.Created="07/01/2008 16:56:58" ReportInfo.Modified="03/28/2023 17:23:11" ReportInfo.CreatorVersion="1.0.0.0">
- <Dictionary>
- <BusinessObjectDataSource Name="Categories BusinessObject" ReferenceName="Categories BusinessObject" DataType="System.Collections.Generic.List`1[[WpfDemo.SampleData+Category, WpfDemo, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]" Enabled="true">
- <Column Name="Name" DataType="System.String"/>
- <Column Name="Description" DataType="System.String"/>
- <BusinessObjectDataSource Name="Products1" Alias="Products" DataType="System.Collections.Generic.List`1[[WpfDemo.SampleData+Product, WpfDemo, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]" PropName="Products" Enabled="true">
- <Column Name="Name" DataType="System.String"/>
- <Column Name="UnitPrice" DataType="System.Decimal"/>
- </BusinessObjectDataSource>
- </BusinessObjectDataSource>
- </Dictionary>
- <ReportPage Name="Page1" Watermark.Font="Arial, 60pt">
- <ReportTitleBand Name="ReportTitle1" Width="718.2" Height="37.8" CanGrow="true">
- <TextObject Name="Text1" Width="718.2" Height="37.8" Text="PRODUCTS BY CATEGORIES" HorzAlign="Center" VertAlign="Center" Font="Segoe UI, 14pt, style=Bold"/>
- </ReportTitleBand>
- <DataBand Name="Data1" Top="39.8" Width="718.2" Height="75.6" Fill.Color="160, 120, 120" DataSource="Categories BusinessObject" PrintIfDetailEmpty="true">
- <TextObject Name="Text2" Left="9.45" Top="9.45" Width="481.95" Height="28.35" Text="[Categories BusinessObject.Name]" VertAlign="Center" Font="Segoe UI, 18pt" TextFill.Color="White"/>
- <TextObject Name="Text3" Left="9.45" Top="47.25" Width="481.95" Height="18.9" Text="[Categories BusinessObject.Description]" VertAlign="Center" Font="Segoe UI, 9pt" TextFill.Color="White"/>
- <DataBand Name="Data2" Top="147.75" Width="718.2" Height="18.9" DataSource="Products1">
- <TextObject Name="Text4" Left="9.45" Width="255.15" Height="18.9" Text="[Categories BusinessObject.Products.Name]" VertAlign="Center" Font="Segoe UI, 9pt"/>
- <TextObject Name="Text6" Left="274.05" Width="94.5" Height="18.9" Text="[Categories BusinessObject.Products.UnitPrice]" Format="Currency" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Right" VertAlign="Center" Font="Segoe UI, 9pt"/>
- <DataHeaderBand Name="DataHeader1" Top="117.4" Width="718.2" Height="28.35">
- <TextObject Name="Text5" Left="9.45" Top="9.45" Width="255.15" Height="18.9" Text="Product Name" VertAlign="Center" Font="Segoe UI, 9pt, style=Bold"/>
- <TextObject Name="Text7" Left="274.05" Top="9.45" Width="94.5" Height="18.9" Text="Unit Price" HorzAlign="Right" VertAlign="Center" Font="Segoe UI, 9pt, style=Bold"/>
- </DataHeaderBand>
- <DataFooterBand Name="DataFooter1" Top="168.65" Width="718.2" Height="37.8"/>
- </DataBand>
- </DataBand>
- <PageFooterBand Name="PageFooter1" Top="208.45" Width="718.2" Height="28.35" Fill.Color="WhiteSmoke">
- <TextObject Name="Text12" Left="9.45" Width="217.35" Height="28.35" Cursor="Hand" Hyperlink.Value="https://www.fast-report.com/en/product/fast-report-net/" Text="Generated by FastReport" VertAlign="Center" Font="Segoe UI, 9pt, style=Underline" TextFill.Color="Blue"/>
- </PageFooterBand>
- </ReportPage>
- </Report>
|