Business Objects.frx 3.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Report ScriptLanguage="CSharp" ReportInfo.Description="This report demonstrates how to use the application business objects.&#13;&#10;- 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">
  3. <Dictionary>
  4. <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">
  5. <Column Name="Name" DataType="System.String"/>
  6. <Column Name="Description" DataType="System.String"/>
  7. <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">
  8. <Column Name="Name" DataType="System.String"/>
  9. <Column Name="UnitPrice" DataType="System.Decimal"/>
  10. </BusinessObjectDataSource>
  11. </BusinessObjectDataSource>
  12. </Dictionary>
  13. <ReportPage Name="Page1" Watermark.Font="Arial, 60pt">
  14. <ReportTitleBand Name="ReportTitle1" Width="718.2" Height="37.8" CanGrow="true">
  15. <TextObject Name="Text1" Width="718.2" Height="37.8" Text="PRODUCTS BY CATEGORIES" HorzAlign="Center" VertAlign="Center" Font="Segoe UI, 14pt, style=Bold"/>
  16. </ReportTitleBand>
  17. <DataBand Name="Data1" Top="39.8" Width="718.2" Height="75.6" Fill.Color="160, 120, 120" DataSource="Categories BusinessObject" PrintIfDetailEmpty="true">
  18. <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"/>
  19. <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"/>
  20. <DataBand Name="Data2" Top="147.75" Width="718.2" Height="18.9" DataSource="Products1">
  21. <TextObject Name="Text4" Left="9.45" Width="255.15" Height="18.9" Text="[Categories BusinessObject.Products.Name]" VertAlign="Center" Font="Segoe UI, 9pt"/>
  22. <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"/>
  23. <DataHeaderBand Name="DataHeader1" Top="117.4" Width="718.2" Height="28.35">
  24. <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"/>
  25. <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"/>
  26. </DataHeaderBand>
  27. <DataFooterBand Name="DataFooter1" Top="168.65" Width="718.2" Height="37.8"/>
  28. </DataBand>
  29. </DataBand>
  30. <PageFooterBand Name="PageFooter1" Top="208.45" Width="718.2" Height="28.35" Fill.Color="WhiteSmoke">
  31. <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"/>
  32. </PageFooterBand>
  33. </ReportPage>
  34. </Report>