在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C#生成类似文档的报表(FastReport)源码

C#生成类似文档的报表(FastReport)源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:9.34M
  • 下载次数:1
  • 浏览次数:12
  • 发布时间:2024-04-28
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】

FastReport是什么?FastReport提供了.NET 6/.NET Core/.NET Framework的免费开源报表生成器。您可以在MVC、Web API、控制台应用程序中使用FastReport开源版。

特点

  • FastReport使用C#编写,与.NET Standard 2.0及更高版本兼容。可扩展的FastReport架构允许创建自己的对象、导出过滤器、向导和数据库引擎。

报表对象

FastReport是一款面向带状报表的报表生成器。有13种类型的带状可用:报表标题、报表摘要、页面头、页面页脚、列头、列页脚、数据头、数据、数据页脚、组头、组页脚、子级和覆盖。此外,完全支持子报表。

广泛的带状类型范围允许创建任何类型的报表:列表、主细节、分组、多列、主细节细节等。

可用报表对象范围广泛:文本、图片、线条、形状、条形码、矩阵、表格、复选框。

报表可以由多个设计页面组成,这使得报表可以包含封面、数据和背面,全部在一个文件中。


【实例截图】

from clipboard

【核心代码】
文件清单
└── FastReport-c6b1c930b0d365dd1cca6b4d0fbd02b8c10ad9c9
    ├── assets
    │   ├── css
    │   │   └── style.scss
    │   └── images
    │       ├── FastReport-screenshot1.png
    │       ├── FastReport-screenshot2.png
    │       ├── FastReport-screenshot3.png
    │       ├── FR-open-source-bw.svg
    │       └── FR-open-source.svg
    ├── CHANGELOG.md
    ├── CODE_OF_CONDUCT.md
    ├── _config.yml
    ├── CONTRIBUTING.md
    ├── Demos
    │   ├── OpenSource
    │   │   ├── Console apps
    │   │   │   ├── DataFromArray
    │   │   │   │   ├── DataFromArray.csproj
    │   │   │   │   ├── DataFromArray.sln
    │   │   │   │   ├── in
    │   │   │   │   │   └── report.frx
    │   │   │   │   └── Program.cs
    │   │   │   ├── DataFromBusinessObject
    │   │   │   │   ├── Category.cs
    │   │   │   │   ├── DataFromBusinessObject.csproj
    │   │   │   │   ├── DataFromBusinessObject.sln
    │   │   │   │   ├── in
    │   │   │   │   │   └── report.frx
    │   │   │   │   ├── Product.cs
    │   │   │   │   └── Program.cs
    │   │   │   ├── DataFromDataSet
    │   │   │   │   ├── DataFromDataSet.csproj
    │   │   │   │   ├── DataFromDataSet.sln
    │   │   │   │   ├── in
    │   │   │   │   │   └── report.frx
    │   │   │   │   └── Program.cs
    │   │   │   ├── PdfExport
    │   │   │   │   ├── PdfExport.csproj
    │   │   │   │   ├── PdfExport.sln
    │   │   │   │   └── Program.cs
    │   │   │   ├── ReportFromCode
    │   │   │   │   ├── in
    │   │   │   │   │   └── nwind.xml
    │   │   │   │   ├── Program.cs
    │   │   │   │   ├── ReportFromCode.csproj
    │   │   │   │   └── ReportFromCode.sln
    │   │   │   └── UserFunctions
    │   │   │       ├── MyFunctions.cs
    │   │   │       ├── Program.cs
    │   │   │       ├── UserFunctions.csproj
    │   │   │       └── UserFunctions.sln
    │   │   ├── Extra
    │   │   │   └── FastReport.OpenSource.AvaloniaViewer
    │   │   │       ├── App.xaml
    │   │   │       ├── App.xaml.cs
    │   │   │       ├── FastReport.OpenSource.AvaloniaViewer.csproj
    │   │   │       ├── FastReport.OpenSource.AvaloniaViewer.sln
    │   │   │       ├── MainWindow.xaml
    │   │   │       ├── MainWindow.xaml.cs
    │   │   │       ├── nuget.config
    │   │   │       ├── Program.cs
    │   │   │       ├── Properties
    │   │   │       │   ├── Resources.Designer.cs
    │   │   │       │   └── Resources.resx
    │   │   │       ├── Reports
    │   │   │       │   ├── Barcode.fpx
    │   │   │       │   ├── Master-Detail.fpx
    │   │   │       │   └── Simple List.fpx
    │   │   │       └── Resources
    │   │   │           ├── 001.ico
    │   │   │           ├── 068.png
    │   │   │           ├── frst.png
    │   │   │           ├── lst.png
    │   │   │           ├── nxt.png
    │   │   │           └── prr.png
    │   │   ├── FastReport.OpenSource.Demos.sln
    │   │   ├── MVC
    │   │   │   ├── FastReport.OpenSource.MVC.6.0
    │   │   │   │   ├── appsettings.Development.json
    │   │   │   │   ├── appsettings.json
    │   │   │   │   ├── Controllers
    │   │   │   │   │   └── HomeController.cs
    │   │   │   │   ├── FastReport.OpenSource.MVC.6.0.csproj
    │   │   │   │   ├── FastReport.OpenSource.MVC.6.0.sln
    │   │   │   │   ├── Models
    │   │   │   │   │   └── HomeModel.cs
    │   │   │   │   ├── Program.cs
    │   │   │   │   ├── Properties
    │   │   │   │   │   └── launchSettings.json
    │   │   │   │   ├── Views
    │   │   │   │   │   ├── Home
    │   │   │   │   │   │   └── Index.cshtml
    │   │   │   │   │   ├── Shared
    │   │   │   │   │   │   ├── _Layout.cshtml
    │   │   │   │   │   │   └── _Layout.cshtml.css
    │   │   │   │   │   ├── _ViewImports.cshtml
    │   │   │   │   │   └── _ViewStart.cshtml
    │   │   │   │   └── wwwroot
    │   │   │   │       ├── css
    │   │   │   │       │   └── site.css
    │   │   │   │       ├── favicon.ico
    │   │   │   │       └── logo.png
    │   │   │   └── FastReport.OpenSource.MVC.DataBase
    │   │   │       ├── Controllers
    │   │   │       │   └── HomeController.cs
    │   │   │       ├── FastreportContext.cs
    │   │   │       ├── fastreport.db
    │   │   │       ├── FastReport.OpenSource.MVC.DataBase.csproj
    │   │   │       ├── FastReport.OpenSource.MVC.DataBase.sln
    │   │   │       ├── Models
    │   │   │       │   ├── Categories.cs
    │   │   │       │   ├── Customers.cs
    │   │   │       │   ├── Employees.cs
    │   │   │       │   ├── ErrorViewModel.cs
    │   │   │       │   ├── HomeModel.cs
    │   │   │       │   ├── MatrixDemo.cs
    │   │   │       │   ├── Orderdetails.cs
    │   │   │       │   ├── Orders.cs
    │   │   │       │   ├── Products.cs
    │   │   │       │   ├── Shippers.cs
    │   │   │       │   ├── Suppliers.cs
    │   │   │       │   └── Unicode.cs
    │   │   │       ├── Program.cs
    │   │   │       ├── Properties
    │   │   │       │   └── launchSettings.json
    │   │   │       ├── Views
    │   │   │       │   ├── Home
    │   │   │       │   │   └── Index.cshtml
    │   │   │       │   ├── Shared
    │   │   │       │   │   ├── _Layout.cshtml
    │   │   │       │   │   └── _Layout.cshtml.css
    │   │   │       │   ├── _ViewImports.cshtml
    │   │   │       │   └── _ViewStart.cshtml
    │   │   │       └── wwwroot
    │   │   │           ├── css
    │   │   │           │   └── site.css
    │   │   │           ├── favicon.ico
    │   │   │           └── logo.png
    │   │   ├── _Shared
    │   │   │   ├── DataSetService.cs
    │   │   │   └── Utils.cs
    │   │   └── SPA
    │   │       ├── FastReport.Core.React
    │   │       │   ├── appsettings.Development.json
    │   │       │   ├── appsettings.json
    │   │       │   ├── ClientApp
    │   │       │   │   ├── aspnetcore-https.js
    │   │       │   │   ├── aspnetcore-react.js
    │   │       │   │   ├── package.json
    │   │       │   │   ├── public
    │   │       │   │   │   ├── favicon.ico
    │   │       │   │   │   ├── index.html
    │   │       │   │   │   ├── logo.png
    │   │       │   │   │   └── manifest.json
    │   │       │   │   ├── README.md
    │   │       │   │   └── src
    │   │       │   │       ├── App.js
    │   │       │   │       ├── components
    │   │       │   │       │   ├── Layout.js
    │   │       │   │       │   ├── NavMenu.css
    │   │       │   │       │   ├── NavMenu.js
    │   │       │   │       │   └── Report.js
    │   │       │   │       ├── custom.css
    │   │       │   │       ├── index.js
    │   │       │   │       ├── reportWebVitals.js
    │   │       │   │       ├── service-worker.js
    │   │       │   │       ├── serviceWorkerRegistration.js
    │   │       │   │       └── setupProxy.js
    │   │       │   ├── Controllers
    │   │       │   │   └── HomeController.cs
    │   │       │   ├── FastReport.Core.React.sln
    │   │       │   ├── FastReport.OpenSource.React.csproj
    │   │       │   ├── Pages
    │   │       │   │   ├── Error.cshtml
    │   │       │   │   ├── Error.cshtml.cs
    │   │       │   │   └── _ViewImports.cshtml
    │   │       │   ├── Program.cs
    │   │       │   ├── Properties
    │   │       │   │   └── launchSettings.json
    │   │       │   └── Views
    │   │       │       └── Home
    │   │       │           └── Get.cshtml
    │   │       ├── FastReport.Core.Vue
    │   │       │   ├── appsettings.Development.json
    │   │       │   ├── appsettings.json
    │   │       │   ├── clientapp
    │   │       │   │   ├── aspnetcore-https.js
    │   │       │   │   ├── babel.config.js
    │   │       │   │   ├── jsconfig.json
    │   │       │   │   ├── nuget.config
    │   │       │   │   ├── package.json
    │   │       │   │   ├── public
    │   │       │   │   │   ├── favicon.ico
    │   │       │   │   │   └── index.html
    │   │       │   │   ├── setup_client.bat
    │   │       │   │   ├── src
    │   │       │   │   │   ├── App.vue
    │   │       │   │   │   ├── assets
    │   │       │   │   │   │   └── logo.png
    │   │       │   │   │   ├── components
    │   │       │   │   │   │   └── ReportsBase.vue
    │   │       │   │   │   └── main.js
    │   │       │   │   ├── vue-client.esproj
    │   │       │   │   └── vue.config.js
    │   │       │   ├── Controllers
    │   │       │   │   └── ReportsController.cs
    │   │       │   ├── FastReport.OpenSource.Vue.csproj
    │   │       │   ├── FastReport.OpenSource.Vue.sln
    │   │       │   ├── Program.cs
    │   │       │   ├── Properties
    │   │       │   │   └── launchSettings.json
    │   │       │   ├── README.txt
    │   │       │   ├── ReportQuery.cs
    │   │       │   └── Views
    │   │       │       └── Reports
    │   │       │           └── ShowReport.cshtml
    │   │       ├── FastReport.OpenSource.Angular
    │   │       │   ├── App_data
    │   │       │   │   ├── Master-Detail.frx
    │   │       │   │   └── nwind.xml
    │   │       │   ├── appsettings.Development.json
    │   │       │   ├── appsettings.json
    │   │       │   ├── ClientApp
    │   │       │   │   ├── angular.json
    │   │       │   │   ├── aspnetcore-https.js
    │   │       │   │   ├── karma.conf.js
    │   │       │   │   ├── package.json
    │   │       │   │   ├── proxy.conf.js
    │   │       │   │   ├── README.md
    │   │       │   │   ├── src
    │   │       │   │   │   ├── app
    │   │       │   │   │   │   ├── app.component.html
    │   │       │   │   │   │   ├── app.component.ts
    │   │       │   │   │   │   ├── app.module.ts
    │   │       │   │   │   │   ├── app.server.module.ts
    │   │       │   │   │   │   ├── safeUrl.pipe.ts
    │   │       │   │   │   │   └── web-report
    │   │       │   │   │   │       ├── web-report.component.html
    │   │       │   │   │   │       └── web-report.component.ts
    │   │       │   │   │   ├── assets
    │   │       │   │   │   │   └── logo.png
    │   │       │   │   │   ├── environments
    │   │       │   │   │   │   ├── environment.prod.ts
    │   │       │   │   │   │   └── environment.ts
    │   │       │   │   │   ├── index.html
    │   │       │   │   │   ├── main.ts
    │   │       │   │   │   ├── polyfills.ts
    │   │       │   │   │   ├── styles.css
    │   │       │   │   │   └── test.ts
    │   │       │   │   ├── tsconfig.app.json
    │   │       │   │   ├── tsconfig.json
    │   │       │   │   └── tsconfig.spec.json
    │   │       │   ├── Controllers
    │   │       │   │   └── WebReportController.cs
    │   │       │   ├── FastReport.OpenSource.Angular.csproj
    │   │       │   ├── FastReport.OpenSource.Angular.sln
    │   │       │   ├── Pages
    │   │       │   │   ├── Error.cshtml
    │   │       │   │   ├── Error.cshtml.cs
    │   │       │   │   └── _ViewImports.cshtml
    │   │       │   ├── Program.cs
    │   │       │   ├── Properties
    │   │       │   │   └── launchSettings.json
    │   │       │   ├── Views
    │   │       │   │   └── WebReport
    │   │       │   │       └── Get.cshtml
    │   │       │   └── wwwroot
    │   │       │       └── favicon.ico
    │   │       └── FastReport.OpenSource.Angular.OnlineDesigner
    │   │           ├── App_Data
    │   │           │   ├── Master-Detail.frx
    │   │           │   └── nwind.xml
    │   │           ├── appsettings.Development.json
    │   │           ├── appsettings.json
    │   │           ├── ClientApp
    │   │           │   ├── angular.json
    │   │           │   ├── aspnetcore-https.js
    │   │           │   ├── karma.conf.js
    │   │           │   ├── package.json
    │   │           │   ├── proxy.conf.js
    │   │           │   ├── README.md
    │   │           │   ├── src
    │   │           │   │   ├── app
    │   │           │   │   │   ├── app.component.html
    │   │           │   │   │   ├── app.component.ts
    │   │           │   │   │   ├── app.module.ts
    │   │           │   │   │   ├── app.server.module.ts
    │   │           │   │   │   ├── home
    │   │           │   │   │   │   ├── home.component.html
    │   │           │   │   │   │   └── home.component.ts
    │   │           │   │   │   ├── http.service.ts
    │   │           │   │   │   ├── safeUrl.pipe.ts
    │   │           │   │   │   └── web-report
    │   │           │   │   │       ├── web-report.component.html
    │   │           │   │   │       └── web-report.component.ts
    │   │           │   │   ├── assets
    │   │           │   │   │   └── logo.png
    │   │           │   │   ├── environments
    │   │           │   │   │   ├── environment.prod.ts
    │   │           │   │   │   └── environment.ts
    │   │           │   │   ├── index.html
    │   │           │   │   ├── main.ts
    │   │           │   │   ├── polyfills.ts
    │   │           │   │   ├── styles.css
    │   │           │   │   └── test.ts
    │   │           │   ├── tsconfig.app.json
    │   │           │   ├── tsconfig.json
    │   │           │   └── tsconfig.spec.json
    │   │           ├── Controllers
    │   │           │   └── SampleDataController.cs
    │   │           ├── FastReport.OpenSource.Angular.OnlineDesigner.csproj
    │   │           ├── Pages
    │   │           │   ├── Error.cshtml.cs
    │   │           │   └── _ViewImports.cshtml
    │   │           ├── Program.cs
    │   │           ├── Properties
    │   │           │   └── launchSettings.json
    │   │           ├── SPAOnlineDesigner.sln
    │   │           ├── Views
    │   │           │   └── SampleData
    │   │           │       ├── Design.cshtml
    │   │           │       └── SaveDesignedReport.cshtml
    │   │           └── wwwroot
    │   │               ├── favicon.ico
    │   │               └── WebReportDesigner
    │   │                   ├── 0.7a1757984c1e2133d865.css
    │   │                   ├── 10.ae64bef3fe7657cf75c7.css
    │   │                   ├── 11.c011adaf8c67e6a756bf.css
    │   │                   ├── 12.28765460a15b83b3909c.css
    │   │                   ├── 1.2a29412af2cfb21e3492.css
    │   │                   ├── 13.b11a4600f724a5bedcb8.css
    │   │                   ├── 14.b7832c21b7471e5576da.css
    │   │                   ├── 3.4a1b8983301c6a62b0b3.css
    │   │                   ├── 4.892a8e22dd43601885a2.css
    │   │                   ├── 7.28765460a15b83b3909c.css
    │   │                   ├── 8.5e89e9a53ae786ca3963.css
    │   │                   ├── 9.5316a9700fa6a89cb22e.css
    │   │                   ├── build.json
    │   │                   ├── cca6f1ad.0.js
    │   │                   ├── cca6f1ad.10.js
    │   │                   ├── cca6f1ad.11.js
    │   │                   ├── cca6f1ad.12.js
    │   │                   ├── cca6f1ad.13.js
    │   │                   ├── cca6f1ad.14.js
    │   │                   ├── cca6f1ad.15.js
    │   │                   ├── cca6f1ad.16.js
    │   │                   ├── cca6f1ad.17.js
    │   │                   ├── cca6f1ad.18.js
    │   │                   ├── cca6f1ad.7.js
    │   │                   ├── cca6f1ad.8.js
    │   │                   ├── cca6f1ad.9.js
    │   │                   ├── cca6f1ad.config-data.js
    │   │                   ├── cca6f1ad.edit-font-dialog.js
    │   │                   ├── cca6f1ad.edit-highlight-dialog.js
    │   │                   ├── cca6f1ad.main.js
    │   │                   ├── cca6f1ad.vendor.js
    │   │                   ├── cca6f1ad.vendors.js
    │   │                   ├── FastReport Online Designer Software License Agreement.pdf
    │   │                   ├── favicon.ico
    │   │                   ├── fonts
    │   │                   │   ├── fontawesome-webfont.674f50d287a8c48dc19ba404d20fe713.eot
    │   │                   │   ├── fontawesome-webfont.af7ae505a9eed503f8b8e6982036873e.woff2
    │   │                   │   ├── fontawesome-webfont.b06871f281fee6b241d60582ae9369b9.ttf
    │   │                   │   └── fontawesome-webfont.fee66e712a8a08eef5805a46892932ad.woff
    │   │                   ├── images
    │   │                   │   ├── 2-5-industrial.0ce2279a9505d8518e950ea2044a5bbf.png
    │   │                   │   ├── 2-5-interleaved.49574e86680a4a06b9e9ea80d8dcf192.png
    │   │                   │   ├── 2-5-matrix.8874a4280b6713f2d3410bcb6c1bd33b.png
    │   │                   │   ├── aztec.af9dd92a357b9464429ee0af6bb8725c.png
    │   │                   │   ├── buttons-icons.888bdd1773e6a27f1616596c1d01879f.png
    │   │                   │   ├── codabar.831cf693f20bd2d375752cbfe4609e18.png
    │   │                   │   ├── code-128.8146fb314a480db7d4fd88fbda6db3a0.png
    │   │                   │   ├── code-39-extended.f2326ee4a18442b382d023988b4b1c1d.png
    │   │                   │   ├── code-93.33d970650ebfa8a0be35a6c2ac2797f9.png
    │   │                   │   ├── code-93-extended.fdbfddd85d3bf9535f9000132aa375aa.png
    │   │                   │   ├── datamatrix.8bdfa8b774d9dffec5ba73a979823f00.png
    │   │                   │   ├── gs1-128.6d2f98ced41d7e11f0340530130de63f.png
    │   │                   │   ├── i.a979613ce0b790fe3dd7951e4b9316df.png
    │   │                   │   ├── icons.5c7ecfe1b7b82ca69e7f3a74829ba75b.png
    │   │                   │   ├── maxi-code.5a96aff791085d828f4d90e04d8f02d7.png
    │   │                   │   ├── pdf-417.745d2656d28531252d070ea3591506e1.png
    │   │                   │   ├── plessey.d9b51921793775e87defd909d7a0bd38.png
    │   │                   │   ├── postnet.323847dc1f7a2c0eb33fb800b80d68a0.png
    │   │                   │   ├── qr-code.5a294511bca71aaf0c361cf0e7b616f2.png
    │   │                   │   ├── Sort.32b06a0e57cedaba09f8fc9ad572adb4.png
    │   │                   │   ├── supplement-2.7164fa3a970b65f3154916394f0463fc.png
    │   │                   │   ├── supplement-5.9ce77a5f0ab44256bf2525d1968554fc.png
    │   │                   │   ├── ui-icons_444444_256x240.a4c733ec4baef9ad3896d4e34a8a5448.png
    │   │                   │   ├── ui-icons_555555_256x240.971364734f3b603e5d363a2634898b42.png
    │   │                   │   ├── ui-icons_777620_256x240.208a290102a4ada58a04de354a1354d7.png
    │   │                   │   ├── ui-icons_777777_256x240.73a1fd052c9d84c0ee0bea3ee85892ed.png
    │   │                   │   ├── ui-icons_cc0000_256x240.0de3b51742ed3ac61435875bccd8973b.png
    │   │                   │   ├── ui-icons_ffffff_256x240.bf27228a7d3957983584fa7698121ea1.png
    │   │                   │   ├── upc-e.af30393a6a96ebffe1bd4374946293ca.png
    │   │                   │   └── usps.f2eab2fc355019c4ffbec0c80eed84f7.png
    │   │                   ├── index.html
    │   │                   ├── locales
    │   │                   │   ├── ar.json
    │   │                   │   ├── cn.json
    │   │                   │   ├── cs.json
    │   │                   │   ├── da.json
    │   │                   │   ├── de.json
    │   │                   │   ├── el.json
    │   │                   │   ├── en.json
    │   │                   │   ├── es.json
    │   │                   │   ├── fa.json
    │   │                   │   ├── fr.json
    │   │                   │   ├── hr.json
    │   │                   │   ├── hu.json
    │   │                   │   ├── hy.json
    │   │                   │   ├── it.json
    │   │                   │   ├── nl.json
    │   │                   │   ├── pl.json
    │   │                   │   ├── pt-br.json
    │   │                   │   ├── pt.json
    │   │                   │   ├── ro.json
    │   │                   │   ├── ru.json
    │   │                   │   ├── sk.json
    │   │                   │   ├── sl.json
    │   │                   │   ├── sr.json
    │   │                   │   ├── sv.json
    │   │                   │   ├── th.json
    │   │                   │   ├── tr.json
    │   │                   │   ├── uk.json
    │   │                   │   ├── zh-Hans.json
    │   │                   │   ├── zh-Hant.json
    │   │                   │   └── zh.json
    │   │                   ├── main.f8028e774ea53323893f.css
    │   │                   ├── README.txt
    │   │                   ├── svg
    │   │                   │   └── fontawesome-webfont.912ec66d7572ff821749319396470bde.svg
    │   │                   └── web.config
    │   └── Reports
    │       ├── About Microsoft Chart.frx
    │       ├── Advanced Matrix.frx
    │       ├── AdvMatrix - Collapse Sort.frx
    │       ├── AdvMatrix - Items comparison.frx
    │       ├── AdvMatrix - Order details.frx
    │       ├── AdvMatrix - Sort Year by total.frx
    │       ├── AdvMatrix - Sparkline, Gauge.frx
    │       ├── AdvMatrix - Stepped layout.frx
    │       ├── AdvMatrix - Two data cells.frx
    │       ├── AdvMatrix - User function.frx
    │       ├── Alternate Color Each Row.frx
    │       ├── Badges.frx
    │       ├── Barcode.frx
    │       ├── Box.frx
    │       ├── Business Objects.frx
    │       ├── Cascaded Data Filtering.frx
    │       ├── CellularText.frx
    │       ├── Chart.frx
    │       ├── CheckBox.frx
    │       ├── Column Datasource.frx
    │       ├── Column Datasource, Wrapped.frx
    │       ├── Complete upto N Rows.frx
    │       ├── Complex Column Headers.frx
    │       ├── Complex (Hyperlinks, Outline, TOC).frx
    │       ├── Complex (Master-detail Group).frx
    │       ├── Databand Columns, Row Numbers.frx
    │       ├── Dialog Elements.frx
    │       ├── Dialog Events.frx
    │       ├── Dialog-WebResponse Book a room.frx
    │       ├── Double Pass, Total Pages.frx
    │       ├── Drill-Down Groups.frx
    │       ├── Duplicate Values.frx
    │       ├── Filtering with CheckedListBox.frx
    │       ├── Filtering with DataSelector.frx
    │       ├── Filtering with Date Ranges.frx
    │       ├── Filtering with Ranges.frx
    │       ├── Fit Dynamic Table To Page.frx
    │       ├── Gauge.frx
    │       ├── Groups.frx
    │       ├── Guidelines.frx
    │       ├── Handle Dialog Forms.frx
    │       ├── Handle Page Breaks.frx
    │       ├── Handle Preview Clicks.frx
    │       ├── Hello, FastReport!.frx
    │       ├── Hierarchic List.frx
    │       ├── Highlight Based on Row-Column.frx
    │       ├── Highlight.frx
    │       ├── Hyperlinks, Bookmarks.frx
    │       ├── Image.frx
    │       ├── Inherited Report - base.frx
    │       ├── Inherited Report.frx
    │       ├── Interactive Chart.frx
    │       ├── Interactive Forms.frx
    │       ├── Interactive Matrix - Details.frx
    │       ├── Interactive Matrix.frx
    │       ├── Interactive Matrix With Chart.frx
    │       ├── Interactive Report, 2-in-1.frx
    │       ├── Interactive Report - Details.frx
    │       ├── Interactive Report.frx
    │       ├── Keep Together.frx
    │       ├── Labels.frx
    │       ├── Labels With Dialog.frx
    │       ├── Lines and Shapes.frx
    │       ├── Mail Merge.frx
    │       ├── Master-Detail.frx
    │       ├── Matrix.frx
    │       ├── Matrix With Columns Only.frx
    │       ├── Matrix With Rows Only.frx
    │       ├── Microsoft Chart Sample.frx
    │       ├── Multiplication Table.frx
    │       ├── nwind.xml
    │       ├── Objects Inside The Matrix.frx
    │       ├── Odd-Even Pages, Mirror Margins.frx
    │       ├── Odd-Even Rows.frx
    │       ├── Outline.frx
    │       ├── Pharmacode.frx
    │       ├── Pictures Inside The Matrix.frx
    │       ├── Polygon.frx
    │       ├── Print Copy Names.frx
    │       ├── Print DataTable.frx
    │       ├── Print Entered Value.frx
    │       ├── Print Month Names.frx
    │       ├── Print on Previous Page.frx
    │       ├── Print Total in The Group Header.frx
    │       ├── Purchase Order.frx
    │       ├── QR-Codes.frx
    │       ├── Repeat Headers.frx
    │       ├── reports.xml
    │       ├── Report With Cover Page.frx
    │       ├── RichText.frx
    │       ├── Row Datasource, Detail Rows.frx
    │       ├── Row Datasource.frx
    │       ├── Row Datasource, Master-Detail.frx
    │       ├── Sales in the USA.frx
    │       ├── Series of Chart.frx
    │       ├── Shift Object Position.frx
    │       ├── Side-by-Side Subreports.frx
    │       ├── Simple List.frx
    │       ├── Simple Matrix.frx
    │       ├── Sort Group By Total.frx
    │       ├── Sparkline.frx
    │       ├── Start New Page, Reset Page Numbers.frx
    │       ├── Stress-Test (1000x1000).frx
    │       ├── Subreport.frx
    │       ├── SVG.frx
    │       ├── Table.frx
    │       ├── Text.frx
    │       ├── TextureFill.frx
    │       ├── The USA Map.frx
    │       ├── Two Cell Dimensions.frx
    │       ├── Two Cell Dimensions, Side-by-Side.frx
    │       ├── Two Column Dimensions.frx
    │       ├── Two Matrices.frx
    │       ├── Two Row Dimensions.frx
    │       ├── Unicode.frx
    │       ├── Using Expressions.frx
    │       ├── Watermark.frx
    │       └── ZipCode.frx
    ├── Directory.Build.targets
    ├── Extras
    │   ├── Core
    │   │   ├── FastReport.Data
    │   │   │   ├── Connections.props
    │   │   │   ├── Directory.Build.props
    │   │   │   ├── Directory.Build.targets
    │   │   │   ├── FastReport.Data.Cassandra
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── CassandraConnectionEditor.cs
    │   │   │   │   ├── CassandraConnectionEditor.Designer.cs
    │   │   │   │   ├── CassandraConnectionEditor.resx
    │   │   │   │   ├── CassandraDataConnection.cs
    │   │   │   │   ├── CassandraDataConnection.DesignExt.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.Cassandra.csproj
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.ClickHouse
    │   │   │   │   ├── ClickHouseAssemblyInitializer.cs
    │   │   │   │   ├── ClickHouseConnection.DesignExt.cs
    │   │   │   │   ├── ClickHouseConnectionEditor.cs
    │   │   │   │   ├── ClickHouseConnectionEditor.Designer.cs
    │   │   │   │   ├── ClickHouseConnectionEditor.resx
    │   │   │   │   ├── ClickHouseDataConnection.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.ClickHouse.csproj
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.Couchbase
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── CouchbaseConnectionEditor.cs
    │   │   │   │   ├── CouchbaseConnectionEditor.Designer.cs
    │   │   │   │   ├── CouchbaseConnectionEditor.resx
    │   │   │   │   ├── CouchbaseConnectionStringBuilder.cs
    │   │   │   │   ├── CouchbaseDataConnection.cs
    │   │   │   │   ├── CouchbaseDataConnection.DesignExt.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.Couchbase.csproj
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.ElasticSearch
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── ESConnectionEditor.cs
    │   │   │   │   ├── ESConnectionEditor.Designer.cs
    │   │   │   │   ├── ESConnectionEditor.resx
    │   │   │   │   ├── ESDataSourceConnection.cs
    │   │   │   │   ├── ESDataSourceConnection.DesignExt.cs
    │   │   │   │   ├── ESDataSourceConnectionStringBuilder.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.ElasticSearch.csproj
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.Excel
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── ExcelConnectionEditor.cs
    │   │   │   │   ├── ExcelConnectionEditor.Designer.cs
    │   │   │   │   ├── ExcelConnectionEditor.resx
    │   │   │   │   ├── ExcelConnectionStringBuilder.cs
    │   │   │   │   ├── ExcelDataConnection.cs
    │   │   │   │   ├── ExcelDataConnection.DesignExt.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.Excel.csproj
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.Firebird
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.Firebird.csproj
    │   │   │   │   ├── FirebirdConnectionEditor.cs
    │   │   │   │   ├── FirebirdConnectionEditor.Designer.cs
    │   │   │   │   ├── FirebirdConnectionEditor.resx
    │   │   │   │   ├── FirebirdDataConnection.cs
    │   │   │   │   ├── FirebirdDataConnection.DesignExt.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.Json
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.Json.csproj
    │   │   │   │   ├── JsonClassGenerator
    │   │   │   │   │   ├── CSharpCodeWriter.cs
    │   │   │   │   │   ├── FieldInfo.cs
    │   │   │   │   │   ├── ICodeWriter.cs
    │   │   │   │   │   ├── IJsonClassGeneratorConfig.cs
    │   │   │   │   │   ├── JsonClassGenerator.cs
    │   │   │   │   │   ├── JsonClassHelper.cs
    │   │   │   │   │   ├── JsonType.cs
    │   │   │   │   │   ├── JsonTypeEnum.cs
    │   │   │   │   │   └── LICENSE.txt
    │   │   │   │   ├── JsonCompiler.cs
    │   │   │   │   ├── JsonConnectionEditor.cs
    │   │   │   │   ├── JsonConnectionEditor.designer.cs
    │   │   │   │   ├── JsonConnectionEditor.resx
    │   │   │   │   ├── JsonConnectionStringBuilder.cs
    │   │   │   │   ├── JsonDataConnection.cs
    │   │   │   │   ├── JsonDataConnection.DesignExt.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.Linter
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.Linter.csproj
    │   │   │   │   ├── LinterConnection.DesignExt.cs
    │   │   │   │   ├── LinterDataConnection.cs
    │   │   │   │   ├── LinterDataConnectionEditor.cs
    │   │   │   │   ├── LinterDataConnectionEditor.Designer.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.MongoDB
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── Community_FastReport.Data.MongoDB.csproj
    │   │   │   │   ├── FastReport.OpenSource.Data.MongoDB.csproj
    │   │   │   │   ├── MongoDBConnectionEditor.cs
    │   │   │   │   ├── MongoDBConnectionEditor.Designer.cs
    │   │   │   │   ├── MongoDBConnectionEditor.resx
    │   │   │   │   ├── MongoDBDataConnection.cs
    │   │   │   │   ├── MongoDBDataConnection.DesignExt.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.MsSql
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.MsSql.csproj
    │   │   │   │   ├── MsSqlDataConnection.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.MySql
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.MySql.csproj
    │   │   │   │   ├── MySqlConnectionEditor.cs
    │   │   │   │   ├── MySqlConnectionEditor.Designer.cs
    │   │   │   │   ├── MySqlConnectionEditor.resx
    │   │   │   │   ├── MySqlDataConnection.cs
    │   │   │   │   ├── MySqlDataConnection.DesignExt.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.Odbc
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.Odbc.csproj
    │   │   │   │   ├── OdbcDataConnection.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.OracleODPCore
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.OracleODPCore.csproj
    │   │   │   │   ├── OracleConnectionEditor.cs
    │   │   │   │   ├── OracleConnectionEditor.Designer.cs
    │   │   │   │   ├── OracleConnectionEditor.resx
    │   │   │   │   ├── OracleDataConnection.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.Postgres
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.Postgres.csproj
    │   │   │   │   ├── PostgresConnectionEditor.cs
    │   │   │   │   ├── PostgresConnectionEditor.Designer.cs
    │   │   │   │   ├── PostgresConnectionEditor.resx
    │   │   │   │   ├── PostgresDataConnection.cs
    │   │   │   │   ├── PostgresDataConnection.DesignExt.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   ├── FastReport.Data.RavenDB
    │   │   │   │   ├── AssemblyInitializer.cs
    │   │   │   │   ├── FastReport.OpenSource.Data.RavenDB.csproj
    │   │   │   │   ├── RavenDBConnectionEditor.cs
    │   │   │   │   ├── RavenDBConnectionEditor.Designer.cs
    │   │   │   │   ├── RavenDBConnectionEditor.resx
    │   │   │   │   ├── RavenDBConnectionStringBuilder.cs
    │   │   │   │   ├── RavenDBDataConnection.cs
    │   │   │   │   ├── RavenDBDataConnection.DesignExt.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   └── Shared.props
    │   │   │   └── FastReport.Data.SQLite
    │   │   │       ├── AssemblyInitializer.cs
    │   │   │       ├── FastReport.OpenSource.Data.SQLite.csproj
    │   │   │       ├── readme.txt
    │   │   │       ├── Shared.props
    │   │   │       ├── SQLiteConnectionEditor.cs
    │   │   │       ├── SQLiteConnectionEditor.Designer.cs
    │   │   │       ├── SQLiteConnectionEditor.resx
    │   │   │       ├── SQLiteDataConnection.cs
    │   │   │       └── SQLiteDataConnection.DesignExt.cs
    │   │   └── FastReport.Plugin
    │   │       ├── Directory.Build.props
    │   │       ├── Directory.Build.targets
    │   │       ├── FastReport.Plugins.WebP
    │   │       │   ├── AssemblyInitializer.cs
    │   │       │   ├── FastReport.Core.Plugins.WebP.csproj
    │   │       │   ├── FastReport.OpenSource.Plugins.WebP.csproj
    │   │       │   ├── FastReport.Plugins.WebP.csproj
    │   │       │   ├── readme.txt
    │   │       │   ├── Shared.props
    │   │       │   └── WebPCustomLoader.cs
    │   │       └── Plugins.props
    │   ├── FastReport.Plugins.snk
    │   ├── OpenSource
    │   │   └── FastReport.OpenSource.Export.PdfSimple
    │   │       ├── FastReport.OpenSource.Export.PdfSimple
    │   │       │   ├── FastReport.OpenSource.Export.PdfSimple.csproj
    │   │       │   ├── PdfCore
    │   │       │   │   ├── PdfArray.cs
    │   │       │   │   ├── PdfBoolean.cs
    │   │       │   │   ├── PdfDictionary.cs
    │   │       │   │   ├── PdfDirectObject.cs
    │   │       │   │   ├── PdfIndirectObject.cs
    │   │       │   │   ├── PdfName.cs
    │   │       │   │   ├── PdfNumeric.cs
    │   │       │   │   ├── PdfObjectBase.cs
    │   │       │   │   ├── PdfStream.cs
    │   │       │   │   └── PdfString.cs
    │   │       │   ├── PdfObjects
    │   │       │   │   ├── PdfCatalog.cs
    │   │       │   │   ├── PdfContents.cs
    │   │       │   │   ├── PdfImage.cs
    │   │       │   │   ├── PdfInfo.cs
    │   │       │   │   ├── PdfMask.cs
    │   │       │   │   ├── PdfPage.cs
    │   │       │   │   ├── PdfPages.cs
    │   │       │   │   ├── PdfTrailerId.cs
    │   │       │   │   └── PdfWriter.cs
    │   │       │   ├── PDFSimpleExport.Config.cs
    │   │       │   ├── PDFSimpleExport.cs
    │   │       │   └── PDFSimpleExport.Images.cs
    │   │       ├── FastReport.OpenSource.Export.PdfSimple.sln
    │   │       └── FastReport.OpenSource.Export.PdfSimple.Tests
    │   │           ├── FastReport.OpenSource.Export.PdfSimple.Tests.csproj
    │   │           ├── PdfSimpleExportTests.cs
    │   │           ├── TestReport.fpx
    │   │           └── Watermark.fpx
    │   └── ReportBuilder
    │       ├── FastReport.ReportBuilder
    │       │   ├── Builders
    │       │   │   ├── DataBuilder.cs
    │       │   │   ├── DataHeaderBuilder.cs
    │       │   │   ├── GroupHeaderBuilder.cs
    │       │   │   ├── ReportBuilder.cs
    │       │   │   └── ReportTitleBuilder.cs
    │       │   ├── Definitions
    │       │   │   ├── DataDefinition.cs
    │       │   │   ├── DataHeaderDefinition.cs
    │       │   │   ├── GroupHeaderDefinition.cs
    │       │   │   ├── ReportDefinition.cs
    │       │   │   └── ReportTitleDefinition.cs
    │       │   ├── FastReport.ReportBuilder.csproj
    │       │   ├── Helpers
    │       │   │   └── GenericHelpers.cs
    │       │   └── ReportHelper.cs
    │       ├── FastReport.ReportBuilder.sln
    │       ├── FastReport.ReportBuilder.UnitTest
    │       │   ├── FastReport.ReportBuilder.UnitTest.csproj
    │       │   ├── packages.config
    │       │   ├── Person.cs
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   └── ReportTest.cs
    │       ├── LICENSE.md
    │       └── README.md
    ├── FastReport
    │   └── Resources
    │       ├── bo.png
    │       ├── buttons-1-hi.png
    │       ├── buttons-1.png
    │       ├── buttons.png
    │       ├── CIS.frx
    │       ├── cross.frss
    │       ├── defaultAvatar.jpg
    │       ├── DesignerControl.bmp
    │       ├── doc.xml
    │       ├── DownArrow.cur
    │       ├── EnvironmentSettings.bmp
    │       ├── en.xml
    │       ├── FastReport.config
    │       ├── Format.cur
    │       ├── fr.png
    │       ├── Games
    │       │   └── FastM1nesweeper.frx
    │       ├── Hand.cur
    │       ├── HandMove.cur
    │       ├── icon16.ico
    │       ├── Images
    │       │   ├── AutoSave-1-hi.png
    │       │   ├── AutoSave-1.png
    │       │   ├── AutoSave.png
    │       │   ├── Collate1-1-hi.png
    │       │   ├── Collate1-1.png
    │       │   ├── Collate1.png
    │       │   ├── Collate2-1-hi.png
    │       │   ├── Collate2-1.png
    │       │   ├── Collate2.png
    │       │   ├── DataWizard-1-hi.png
    │       │   ├── DataWizard-1.png
    │       │   ├── DataWizard.png
    │       │   ├── DefaultMode-1-hi.png
    │       │   ├── DefaultMode-1.png
    │       │   ├── DefaultMode.png
    │       │   ├── Landscape-1-hi.png
    │       │   ├── Landscape-1.png
    │       │   ├── Landscape.png
    │       │   ├── Password-1-hi.png
    │       │   ├── Password-1.png
    │       │   ├── Password.png
    │       │   ├── Portrait-1-hi.png
    │       │   ├── Portrait-1.png
    │       │   ├── Portrait.png
    │       │   ├── QueryWizard-1-hi.png
    │       │   ├── QueryWizard-1.png
    │       │   ├── QueryWizard.png
    │       │   ├── ReportWizard-1-hi.png
    │       │   ├── ReportWizard-1.png
    │       │   ├── ReportWizard.png
    │       │   ├── ScaleMode-1-hi.png
    │       │   ├── ScaleMode-1.png
    │       │   ├── ScaleMode.png
    │       │   ├── Splash.png
    │       │   ├── SplitMode-1-hi.png
    │       │   ├── SplitMode-1.png
    │       │   ├── SplitMode.png
    │       │   └── Welcome.png
    │       ├── labels.dat
    │       ├── MSChart
    │       │   ├── Area.png
    │       │   ├── Bar.png
    │       │   ├── Blue.xml
    │       │   ├── Bubble.png
    │       │   ├── Candlestick.png
    │       │   ├── Column.png
    │       │   ├── Doughnut.png
    │       │   ├── FastLine.png
    │       │   ├── FastPoint.png
    │       │   ├── Funnel.png
    │       │   ├── Gray.xml
    │       │   ├── Green.xml
    │       │   ├── Kagi.png
    │       │   ├── Light.xml
    │       │   ├── Line.png
    │       │   ├── Pie.png
    │       │   ├── Pink.xml
    │       │   ├── PointAndFigure.png
    │       │   ├── Point.png
    │       │   ├── Polar.png
    │       │   ├── Pyramid.png
    │       │   ├── Radar.png
    │       │   ├── RangeBar.png
    │       │   ├── RangeColumn.png
    │       │   ├── Range.png
    │       │   ├── Renko.png
    │       │   ├── Sand.xml
    │       │   ├── SplineArea.png
    │       │   ├── Spline.png
    │       │   ├── SplineRange.png
    │       │   ├── StackedArea100.png
    │       │   ├── StackedArea.png
    │       │   ├── StackedBar100.png
    │       │   ├── StackedBar.png
    │       │   ├── StackedColumn100.png
    │       │   ├── StackedColumn.png
    │       │   ├── Steel.xml
    │       │   ├── StepLine.png
    │       │   ├── Stock.png
    │       │   └── ThreeLineBreak.png
    │       ├── OoXML
    │       │   ├── settings.xml
    │       │   ├── styles.xml
    │       │   └── theme1.xml
    │       ├── Pdf
    │       │   ├── MetaDataX3.xml
    │       │   ├── MetaDataX4.xml
    │       │   ├── MetaData.xml
    │       │   ├── pdfaprofile.icc
    │       │   ├── pdfcmykprofile.icc
    │       │   └── pdfxprofile.icc
    │       ├── perforation.png
    │       ├── PreviewControl.bmp
    │       ├── Report.bmp
    │       ├── reportstyles.frss
    │       ├── Ribbon
    │       │   ├── About-1-hi.png
    │       │   ├── About-1.png
    │       │   ├── About.png
    │       │   ├── Account-1-hi.png
    │       │   ├── Account-1.png
    │       │   ├── Account.png
    │       │   ├── AddDataSource-1-hi.png
    │       │   ├── AddDataSource-1.png
    │       │   ├── AddDataSource.png
    │       │   ├── AlignMenu-1-hi.png
    │       │   ├── AlignMenu-1.png
    │       │   ├── AlignMenu.png
    │       │   ├── AlignToGrid-1-hi.png
    │       │   ├── AlignToGrid-1.png
    │       │   ├── AlignToGrid.png
    │       │   ├── Bands-1-hi.png
    │       │   ├── Bands-1.png
    │       │   ├── Bands.png
    │       │   ├── BringToFront-1-hi.png
    │       │   ├── BringToFront-1.png
    │       │   ├── BringToFront.png
    │       │   ├── ChooseData-1-hi.png
    │       │   ├── ChooseData-1.png
    │       │   ├── ChooseData.png
    │       │   ├── CloudOpen-1-hi.png
    │       │   ├── CloudOpen-1.png
    │       │   ├── CloudOpen.png
    │       │   ├── CloudSave-1-hi.png
    │       │   ├── CloudSave-1.png
    │       │   ├── CloudSave.png
    │       │   ├── Exit-1-hi.png
    │       │   ├── Exit-1.png
    │       │   ├── Exit.png
    │       │   ├── FitToGrid-1-hi.png
    │       │   ├── FitToGrid-1.png
    │       │   ├── FitToGrid.png
    │       │   ├── Format-1-hi.png
    │       │   ├── Format-1.png
    │       │   ├── Format.png
    │       │   ├── Group-1-hi.png
    │       │   ├── Group-1.png
    │       │   ├── Grouping-1-hi.png
    │       │   ├── Grouping-1.png
    │       │   ├── Grouping.png
    │       │   ├── Group.png
    │       │   ├── HelpContents-1-hi.png
    │       │   ├── HelpContents-1.png
    │       │   ├── HelpContents.png
    │       │   ├── Highlight-1-hi.png
    │       │   ├── Highlight-1.png
    │       │   ├── Highlight.png
    │       │   ├── New-1-hi.png
    │       │   ├── New-1.png
    │       │   ├── New.png
    │       │   ├── Open-1-hi.png
    │       │   ├── Open-1.png
    │       │   ├── Open.png
    │       │   ├── OpenWelcomeWindow-1-hi.png
    │       │   ├── OpenWelcomeWindow-1.png
    │       │   ├── Options-1-hi.png
    │       │   ├── Options-1.png
    │       │   ├── Options.png
    │       │   ├── Page-1-hi.png
    │       │   ├── Page-1.png
    │       │   ├── Page.png
    │       │   ├── PageSetup-1-hi.png
    │       │   ├── PageSetup-1.png
    │       │   ├── PageSetup.png
    │       │   ├── Panels-1-hi.png
    │       │   ├── Panels-1.png
    │       │   ├── Panels.png
    │       │   ├── Paste-1-hi.png
    │       │   ├── Paste-1.png
    │       │   ├── Paste.png
    │       │   ├── Print-1-hi.png
    │       │   ├── Print-1.png
    │       │   ├── Print.png
    │       │   ├── Replace-1-hi.png
    │       │   ├── Replace-1.png
    │       │   ├── Replace.png
    │       │   ├── Report1-1-hi.png
    │       │   ├── Report1-1.png
    │       │   ├── Report-1-hi.png
    │       │   ├── Report-1.png
    │       │   ├── Report1.png
    │       │   ├── Report.png
    │       │   ├── Save-1-hi.png
    │       │   ├── Save-1.png
    │       │   ├── Save.png
    │       │   ├── SelectLanguage-1-hi.png
    │       │   ├── SelectLanguage-1.png
    │       │   ├── SendToBack-1-hi.png
    │       │   ├── SendToBack-1.png
    │       │   ├── SendToBack.png
    │       │   ├── SizeMenu-1-hi.png
    │       │   ├── SizeMenu-1.png
    │       │   ├── SizeMenu.png
    │       │   ├── SpacingMenu-1-hi.png
    │       │   ├── SpacingMenu-1.png
    │       │   ├── SpacingMenu.png
    │       │   ├── Ungroup-1-hi.png
    │       │   ├── Ungroup-1.png
    │       │   ├── Ungroup.png
    │       │   ├── ViewGridlines-1-hi.png
    │       │   ├── ViewGridlines-1.png
    │       │   ├── ViewGridlines.png
    │       │   ├── ViewGuides-1-hi.png
    │       │   ├── ViewGuides-1.png
    │       │   ├── ViewGuides.png
    │       │   ├── WebPreview-1-hi.png
    │       │   ├── WebPreview-1.png
    │       │   └── WebPreview.png
    │       ├── RightArrow.cur
    │       ├── samplereportcolumnar.frx
    │       ├── samplereporttabular.frx
    │       ├── samplestylereport.frx
    │       └── SVG
    │           └── svg11.dtd
    ├── FastReport.Base
    │   ├── AssemblyInitializer.cs
    │   ├── BandBase.cs
    │   ├── BandCollection.cs
    │   ├── BandColumns.cs
    │   ├── Barcode
    │   │   ├── Aztec
    │   │   │   ├── AztecCode.cs
    │   │   │   ├── AztecEncodingOptions.cs
    │   │   │   ├── BinaryShiftToken.cs
    │   │   │   ├── BitArray.cs
    │   │   │   ├── BitMatrix.cs
    │   │   │   ├── EncodeHintType.cs
    │   │   │   ├── Encoder.cs
    │   │   │   ├── EncodingOptions.cs
    │   │   │   ├── GenericGF.cs
    │   │   │   ├── GenericGFPoly.cs
    │   │   │   ├── HighLevelEncoder.cs
    │   │   │   ├── ReedSolomonEncoder.cs
    │   │   │   ├── SimpleToken.cs
    │   │   │   ├── State.cs
    │   │   │   ├── SupportClass.cs
    │   │   │   └── Token.cs
    │   │   ├── Barcode128.cs
    │   │   ├── Barcode2DBase.cs
    │   │   ├── Barcode2of5.cs
    │   │   ├── Barcode39.cs
    │   │   ├── Barcode93.cs
    │   │   ├── BarcodeAztec.cs
    │   │   ├── BarcodeBase.cs
    │   │   ├── BarcodeCodabar.cs
    │   │   ├── BarcodeDatamatrix.cs
    │   │   ├── BarcodeEAN.cs
    │   │   ├── BarcodeGS1.cs
    │   │   ├── BarcodeIntelligentMail.cs
    │   │   ├── BarcodeMaxiCode.cs
    │   │   ├── BarcodeMSI.cs
    │   │   ├── BarcodeObject.cs
    │   │   ├── BarcodePDF417.cs
    │   │   ├── BarcodePharmacode.cs
    │   │   ├── BarcodePlessey.cs
    │   │   ├── BarcodePostNet.cs
    │   │   ├── BarcodeQR.cs
    │   │   ├── BarcodeUPC.cs
    │   │   ├── GS1Helper.cs
    │   │   ├── LinearBarcodeBase.cs
    │   │   ├── QRCode
    │   │   │   ├── BitVector.cs
    │   │   │   ├── BlockPair.cs
    │   │   │   ├── ByteArray.cs
    │   │   │   ├── ByteMatrix.cs
    │   │   │   ├── Encoder.cs
    │   │   │   ├── ErrorCorrectionLevel.cs
    │   │   │   ├── GF256.cs
    │   │   │   ├── GF256Poly.cs
    │   │   │   ├── MaskUtil.cs
    │   │   │   ├── MatrixUtil.cs
    │   │   │   ├── Mode.cs
    │   │   │   ├── QRCode.cs
    │   │   │   ├── QRCodeWriter.cs
    │   │   │   ├── QRData.cs
    │   │   │   ├── ReedSolomonEncoder.cs
    │   │   │   ├── SupportClass.cs
    │   │   │   ├── Version.cs
    │   │   │   └── WriterException.cs
    │   │   └── SwissQRCode.cs
    │   ├── Base.cs
    │   ├── Border.cs
    │   ├── BreakableComponent.cs
    │   ├── CapSettings.cs
    │   ├── CellularTextObject.cs
    │   ├── CheckBoxObject.cs
    │   ├── ChildBand.cs
    │   ├── Code
    │   │   ├── AssemblyCollection.cs
    │   │   ├── AssemblyDescriptor.cs
    │   │   ├── CodeHelper.cs
    │   │   ├── CodeUtils.cs
    │   │   ├── CsCodeHelper.cs
    │   │   ├── StubClasses.cs
    │   │   └── VbCodeHelper.cs
    │   ├── ColumnFooterBand.cs
    │   ├── ColumnHeaderBand.cs
    │   ├── ComponentBase.cs
    │   ├── ConditionCollection.cs
    │   ├── ContainerObject.cs
    │   ├── CrossView
    │   │   ├── BaseCubeLink.cs
    │   │   ├── CrossViewCellDescriptor.cs
    │   │   ├── CrossViewCells.cs
    │   │   ├── CrossViewData.cs
    │   │   ├── CrossViewDescriptor.cs
    │   │   ├── CrossViewHeader.cs
    │   │   ├── CrossViewHeaderDescriptor.cs
    │   │   ├── CrossViewHelper.cs
    │   │   └── CrossViewObject.cs
    │   ├── Data
    │   │   ├── BusinessObjectConverter.cs
    │   │   ├── BusinessObjectDataSource.cs
    │   │   ├── ColumnCollection.cs
    │   │   ├── Column.cs
    │   │   ├── CommandParameterCollection.cs
    │   │   ├── CommandParameter.cs
    │   │   ├── ConnectionCollection.cs
    │   │   ├── CsvConnectionStringBuilder.cs
    │   │   ├── CsvDataConnection.cs
    │   │   ├── CsvUtils.cs
    │   │   ├── CubeHelper.cs
    │   │   ├── CubeSourceBase.cs
    │   │   ├── CubeSourceCollection.cs
    │   │   ├── DataComponentBase.cs
    │   │   ├── DataConnectionBase.cs
    │   │   ├── DataHelper.cs
    │   │   ├── DataSourceBase.cs
    │   │   ├── DataSourceCollection.cs
    │   │   ├── DataSourceFilter.cs
    │   │   ├── Dictionary.cs
    │   │   ├── DictionaryHelper.cs
    │   │   ├── JsonConnection
    │   │   │   ├── IJsonProviderSourceConnection.cs
    │   │   │   ├── JsonDataSourceConnection.cs
    │   │   │   ├── JsonDataSourceConnectionStringBuilder.cs
    │   │   │   └── JsonTableDataSource.cs
    │   │   ├── ParameterCollection.cs
    │   │   ├── Parameter.cs
    │   │   ├── ProcedureDataSource.cs
    │   │   ├── ProcedureParameter.cs
    │   │   ├── RelationCollection.cs
    │   │   ├── Relation.cs
    │   │   ├── SliceCubeSource.cs
    │   │   ├── SystemVariables.cs
    │   │   ├── TableCollection.cs
    │   │   ├── TableDataSource.cs
    │   │   ├── TotalCollection.cs
    │   │   ├── Total.cs
    │   │   ├── ViewDataSource.cs
    │   │   ├── VirtualDataSource.cs
    │   │   ├── XmlConnectionStringBuilder.cs
    │   │   └── XmlDataConnection.cs
    │   ├── DataBand.cs
    │   ├── DataFooterBand.cs
    │   ├── DataHeaderBand.cs
    │   ├── Engine
    │   │   ├── ReportEngine.Bands.cs
    │   │   ├── ReportEngine.Break.cs
    │   │   ├── ReportEngine.cs
    │   │   ├── ReportEngine.DataBands.cs
    │   │   ├── ReportEngine.Groups.cs
    │   │   ├── ReportEngine.Keep.cs
    │   │   ├── ReportEngine.KeepWithData.cs
    │   │   ├── ReportEngine.Outline.cs
    │   │   ├── ReportEngine.PageNumbers.cs
    │   │   ├── ReportEngine.Pages.cs
    │   │   ├── ReportEngine.ProcessAt.cs
    │   │   ├── ReportEngine.Reprint.cs
    │   │   └── ReportEngine.Subreports.cs
    │   ├── Export
    │   │   ├── ExportBase.cs
    │   │   ├── ExportUtils.cs
    │   │   ├── Html
    │   │   │   ├── HTMLExport.cs
    │   │   │   ├── HTMLExportDraw.cs
    │   │   │   ├── HTMLExportLayers.cs
    │   │   │   ├── HTMLExportStyles.cs
    │   │   │   ├── HTMLExportTemplates.cs
    │   │   │   └── HTMLExportUtils.cs
    │   │   └── Image
    │   │       └── ImageExport.cs
    │   ├── Fakes.cs
    │   ├── FastReport.Base.csproj
    │   ├── Fills.cs
    │   ├── Format
    │   │   ├── BooleanFormat.cs
    │   │   ├── CurrencyFormat.cs
    │   │   ├── CustomFormat.cs
    │   │   ├── DateFormat.cs
    │   │   ├── FormatBase.cs
    │   │   ├── FormatCollection.cs
    │   │   ├── GeneralFormat.cs
    │   │   ├── NumberFormat.cs
    │   │   ├── PercentFormat.cs
    │   │   └── TimeFormat.cs
    │   ├── Functions
    │   │   ├── NumToLettersBase.cs
    │   │   ├── NumToLettersEn.cs
    │   │   ├── NumToLettersRu.cs
    │   │   ├── NumToWordsBase.cs
    │   │   ├── NumToWordsDe.cs
    │   │   ├── NumToWordsEn.cs
    │   │   ├── NumToWordsEnGb.cs
    │   │   ├── NumToWordsEs.cs
    │   │   ├── NumToWordsFr.cs
    │   │   ├── NumToWordsIn.cs
    │   │   ├── NumToWordsNl.cs
    │   │   ├── NumToWordSp.cs
    │   │   ├── NumToWordsPersian.cs
    │   │   ├── NumToWordsPl.cs
    │   │   ├── NumToWordsRu.cs
    │   │   ├── NumToWordsUkr.cs
    │   │   ├── Roman.cs
    │   │   └── StdFunctions.cs
    │   ├── Gauge
    │   │   ├── GaugeLabel.cs
    │   │   ├── GaugeObject.cs
    │   │   ├── GaugePointer.cs
    │   │   ├── GaugeScale.cs
    │   │   ├── Linear
    │   │   │   ├── LinearGauge.cs
    │   │   │   ├── LinearPointer.cs
    │   │   │   └── LinearScale.cs
    │   │   ├── Radial
    │   │   │   ├── RadialGauge.cs
    │   │   │   ├── RadialLabel.cs
    │   │   │   ├── RadialPointer.cs
    │   │   │   ├── RadialScale.cs
    │   │   │   └── RadialUtils.cs
    │   │   └── Simple
    │   │       ├── Progress
    │   │       │   ├── SimpleProgressGauge.cs
    │   │       │   ├── SimpleProgressLabel.cs
    │   │       │   └── SimpleProgressPointer.cs
    │   │       ├── SimpleGauge.cs
    │   │       ├── SimplePointer.cs
    │   │       └── SimpleScale.cs
    │   ├── GroupFooterBand.cs
    │   ├── GroupHeaderBand.cs
    │   ├── HeaderFooterBandBase.cs
    │   ├── HighlightCondition.cs
    │   ├── HtmlObject.cs
    │   ├── Hyperlink.cs
    │   ├── IFRSerializable.cs
    │   ├── Import
    │   │   ├── ComponentsFactory.cs
    │   │   ├── DevExpress
    │   │   │   ├── DevExpressImport.cs
    │   │   │   ├── DevExpressImport.XmlSource.cs
    │   │   │   └── UnitsConverter.cs
    │   │   ├── ImportBase.cs
    │   │   ├── JasperReports
    │   │   │   ├── JasperReportsImport.cs
    │   │   │   └── UnitsConverter.cs
    │   │   ├── ListAndLabel
    │   │   │   ├── ListAndLabelImport.cs
    │   │   │   └── UnitsConverter.cs
    │   │   ├── RDL
    │   │   │   ├── ImportTable.cs
    │   │   │   ├── RDLImport.cs
    │   │   │   ├── SizeUnits.cs
    │   │   │   └── UnitsConverter.cs
    │   │   └── StimulSoft
    │   │       ├── StimulSoftImport.cs
    │   │       └── UnitsConverter.cs
    │   ├── IParent.cs
    │   ├── ITranslatable.cs
    │   ├── LineObject.cs
    │   ├── Matrix
    │   │   ├── MatrixCellDescriptor.cs
    │   │   ├── MatrixCells.cs
    │   │   ├── MatrixData.cs
    │   │   ├── MatrixDescriptor.cs
    │   │   ├── MatrixHeader.cs
    │   │   ├── MatrixHeaderDescriptor.cs
    │   │   ├── MatrixHeaderItem.cs
    │   │   ├── MatrixHelper.cs
    │   │   ├── MatrixObject.cs
    │   │   └── MatrixStyleSheet.cs
    │   ├── ObjectCollection.cs
    │   ├── OverlayBand.cs
    │   ├── PageBase.cs
    │   ├── PageCollection.cs
    │   ├── PageColumns.cs
    │   ├── PageFooterBand.cs
    │   ├── PageHeaderBand.cs
    │   ├── PictureObjectBase.cs
    │   ├── PictureObject.cs
    │   ├── PolygonObject.cs
    │   ├── PolyLineObject.cs
    │   ├── Preview
    │   │   ├── Bookmarks.cs
    │   │   ├── Dictionary.cs
    │   │   ├── Outline.cs
    │   │   ├── PageCache.cs
    │   │   ├── PreparedPage.cs
    │   │   ├── PreparedPagePostprocessor.cs
    │   │   ├── PreparedPages.cs
    │   │   └── SourcePages.cs
    │   ├── ReportComponentBase.cs
    │   ├── ReportComponentCollection.cs
    │   ├── Report.cs
    │   ├── ReportEventArgs.cs
    │   ├── ReportInfo.cs
    │   ├── ReportPage.cs
    │   ├── ReportSettings.cs
    │   ├── ReportSummaryBand.cs
    │   ├── ReportTitleBand.cs
    │   ├── RFIDLabel.cs
    │   ├── ShapeObject.cs
    │   ├── SortCollection.cs
    │   ├── Sort.cs
    │   ├── StyleBase.cs
    │   ├── StyleCollection.cs
    │   ├── Style.cs
    │   ├── StyleSheet.cs
    │   ├── SubreportObject.cs
    │   ├── Table
    │   │   ├── TableBase.cs
    │   │   ├── TableCell.cs
    │   │   ├── TableCellData.cs
    │   │   ├── TableColumnCollection.cs
    │   │   ├── TableColumn.cs
    │   │   ├── TableHelper.cs
    │   │   ├── TableObject.cs
    │   │   ├── TableResult.cs
    │   │   ├── TableRowCollection.cs
    │   │   ├── TableRow.cs
    │   │   └── TableStyleCollection.cs
    │   ├── TextObjectBase.cs
    │   ├── TextObject.cs
    │   ├── TextOutline.cs
    │   ├── TypeConverters
    │   │   ├── BarcodeConverter.cs
    │   │   ├── ComponentRefConverter.cs
    │   │   ├── CubeSourceConverter.cs
    │   │   ├── DataSourceConverter.cs
    │   │   ├── DataTypeConverter.cs
    │   │   ├── FillConverter.cs
    │   │   ├── FlagConverter.cs
    │   │   ├── FloatCollectionConverter.cs
    │   │   ├── FormatConverter.cs
    │   │   ├── FRExpandableObjectConverter.cs
    │   │   ├── ParameterDataTypeConverter.cs
    │   │   └── RelationConverter.cs
    │   ├── Utils
    │   │   ├── AssemblyInitializerBase.cs
    │   │   ├── BlobStore.cs
    │   │   ├── CompileHelper.cs
    │   │   ├── CompilerSettings.cs
    │   │   ├── Compressor.cs
    │   │   ├── Config.cs
    │   │   ├── Converter.cs
    │   │   ├── Crc32.cs
    │   │   ├── Crypter.cs
    │   │   ├── DrawUtils.cs
    │   │   ├── Exceptions.cs
    │   │   ├── ExportsOptions.cs
    │   │   ├── FastNameCreator.cs
    │   │   ├── FastString.cs
    │   │   ├── FileUtils.cs
    │   │   ├── FloatCollection.cs
    │   │   ├── FontManager.cs
    │   │   ├── FontManager.Gdi.cs
    │   │   ├── FontManager.Internals.cs
    │   │   ├── FRCollectionBase.cs
    │   │   ├── FRPaintEventArgs.cs
    │   │   ├── FRPrivateFontCollection.cs
    │   │   ├── FRRandom.cs
    │   │   ├── FRReader.cs
    │   │   ├── FRWriter.cs
    │   │   ├── GraphicCache.cs
    │   │   ├── HtmlTextRenderer.cs
    │   │   ├── ImageHelper.cs
    │   │   ├── Json
    │   │   │   ├── JsonArray.cs
    │   │   │   ├── JsonBase.cs
    │   │   │   ├── JsonObject.cs
    │   │   │   ├── JsonSchema.cs
    │   │   │   ├── JsonTextReader.cs
    │   │   │   └── Serialization
    │   │   │       ├── JsonAttributes.cs
    │   │   │       ├── JsonConverter.cs
    │   │   │       ├── JsonDeserializer.cs
    │   │   │       ├── JsonPropertyInfo.cs
    │   │   │       └── JsonSerializer.cs
    │   │   ├── MyEncodingInfo.cs
    │   │   ├── RegisteredObjects.cs
    │   │   ├── Res.cs
    │   │   ├── ResourceLoader.cs
    │   │   ├── ScriptSecurityEventArgs.cs
    │   │   ├── ShortProperties.cs
    │   │   ├── StorageService.cs
    │   │   ├── TextRenderer.cs
    │   │   ├── Units.cs
    │   │   ├── Validator.cs
    │   │   ├── Variant.cs
    │   │   ├── Xml.cs
    │   │   └── Zip.cs
    │   ├── Watermark.cs
    │   └── ZipCodeObject.cs
    ├── FastReport.Compat
    │   ├── Directory.Build.props
    │   ├── FastReport.Compat
    │   │   └── FastReport.Compat.csproj
    │   ├── LICENSE.md
    │   └── shared
    │       ├── Compiler
    │       │   ├── CodeDomProvider.cs
    │       │   ├── CodeGenerator.cs
    │       │   ├── CompilationEventArgs.cs
    │       │   ├── CompilerError.cs
    │       │   ├── CompilerParameters.cs
    │       │   ├── CompilerResults.cs
    │       │   ├── CSharpCodeProvider.cs
    │       │   ├── IAssemblyLoadResolver.cs
    │       │   ├── TempFileCollection.cs
    │       │   └── VBCodeProvider.cs
    │       ├── DotNetClasses
    │       │   ├── Color.Full.cs
    │       │   ├── GdiGraphics.cs
    │       │   ├── IGraphics.cs
    │       │   └── UITypeEditor.cs
    │       ├── TypeConverters
    │       │   ├── ColorConverter.cs
    │       │   ├── Color.Core.cs
    │       │   ├── FontConverter.cs
    │       │   ├── FontConverter.IFontFamilyMatcher.cs
    │       │   └── SizeConverter.cs
    │       └── WindowsForms
    │           ├── ComboBox.ObjectCollection.cs
    │           ├── ItemArray.cs
    │           ├── ListBox.ObjectCollection.cs
    │           ├── ListBox.SelectedIndexCollection.cs
    │           ├── ListBox.SelectedObjectCollection.cs
    │           ├── WindowsFormsReplacement.BindingSource.cs
    │           ├── WindowsFormsReplacement.cs
    │           └── WindowsFormsReplacement.ListBindingHelper.cs
    ├── FastReport.Core.Web
    │   ├── Application
    │   │   ├── Cache
    │   │   │   ├── CacheOptions.cs
    │   │   │   ├── IWebReportCache.cs
    │   │   │   ├── WebReportCache.cs
    │   │   │   ├── WebReportDistributedCache.cs
    │   │   │   ├── WebReportLegacyCache.cs
    │   │   │   └── WebReportMemoryCache.cs
    │   │   ├── Constants.cs
    │   │   ├── DesignerSettings.cs
    │   │   ├── ExportMenuSettings.cs
    │   │   ├── ExportsHelper.cs
    │   │   ├── Extensions.cs
    │   │   ├── Infrastructure
    │   │   │   ├── ControllerBuilder.cs
    │   │   │   ├── ControllerExecutor.cs
    │   │   │   ├── FastReportBuilderExtensions.cs
    │   │   │   ├── FastReportGlobal.cs
    │   │   │   ├── FastReportMiddleware.cs
    │   │   │   ├── FastReportOptions.cs
    │   │   │   ├── FastReportServiceCollectionExtensions.Backend.cs
    │   │   │   ├── FastReportServiceCollectionExtensions.cs
    │   │   │   └── IResult.cs
    │   │   ├── LinkerFlags.cs
    │   │   ├── Localizations
    │   │   │   ├── DocxExportSettingsLocalization.cs
    │   │   │   ├── EmailExportSettingsLocalization.cs
    │   │   │   ├── HtmlExportSettingsLocalization.cs
    │   │   │   ├── ImageExportSettingsLocalization.cs
    │   │   │   ├── OdfExportSettingsLocalization.cs
    │   │   │   ├── PageSelectorLocalization.cs
    │   │   │   ├── PdfExportSettingsLocalization.cs
    │   │   │   ├── PptxExportSettingsLocalization.cs
    │   │   │   ├── RtfExportSettingsLocalization.cs
    │   │   │   ├── SvgExportSettingsLocalization.cs
    │   │   │   ├── XlsxExportSettingsLocalization.cs
    │   │   │   └── XmlExportSettingsLocalization.cs
    │   │   ├── ReportTab.cs
    │   │   ├── Toolbar
    │   │   │   ├── ToolbarButton.cs
    │   │   │   ├── ToolbarElement.cs
    │   │   │   ├── ToolbarInput.cs
    │   │   │   └── ToolbarSelect.cs
    │   │   ├── Toolbar.Localization.cs
    │   │   ├── ToolbarSettings.cs
    │   │   ├── WebReport.Backend.cs
    │   │   ├── WebReport.cs
    │   │   ├── WebReportDesigner.cs
    │   │   ├── WebReportExceptions.cs
    │   │   ├── WebReport.Exports.cs
    │   │   ├── WebReportHtml.Backend.cs
    │   │   ├── WebReportHtml.cs
    │   │   ├── WebReportOptions.cs
    │   │   ├── WebReport.Tabs.cs
    │   │   ├── WebResources.cs
    │   │   └── WebUtils.cs
    │   ├── Controllers
    │   │   ├── ApiControllerBase.cs
    │   │   ├── Designer
    │   │   │   ├── ConnectionsController.cs
    │   │   │   ├── DesignerReportController.cs
    │   │   │   └── UtilsController.cs
    │   │   ├── Preview
    │   │   │   ├── DialogController.cs
    │   │   │   ├── ExportReportController.cs
    │   │   │   ├── GetPictureController.cs
    │   │   │   ├── GetReportController.cs
    │   │   │   ├── PrintReportController.cs
    │   │   │   └── ServiceController.cs
    │   │   └── Resources
    │   │       └── ResourcesController.cs
    │   ├── Directory.Build.props
    │   ├── Directory.Build.targets
    │   ├── FastReport.OpenSource.Web.csproj
    │   ├── FastReport.Web.Shared.props
    │   ├── README.md
    │   ├── Resources
    │   │   ├── angle-double-left.svg
    │   │   ├── angle-double-right.svg
    │   │   ├── angle-left.svg
    │   │   ├── angle-right.svg
    │   │   ├── button-active.svg
    │   │   ├── button.svg
    │   │   ├── caret-down.svg
    │   │   ├── caret-right.svg
    │   │   ├── close.svg
    │   │   ├── date-picker.svg
    │   │   ├── default-custom-button.svg
    │   │   ├── file.svg
    │   │   ├── magnifier.svg
    │   │   ├── notification-bell.svg
    │   │   ├── print.svg
    │   │   ├── reload.svg
    │   │   ├── save.svg
    │   │   ├── select-arrow.svg
    │   │   ├── settings.svg
    │   │   ├── slash.svg
    │   │   ├── spinner.svg
    │   │   └── split.min.js
    │   ├── Services
    │   │   ├── Abstract
    │   │   │   ├── IConnectionsService.cs
    │   │   │   ├── IDesignerUtilsService.cs
    │   │   │   ├── IExportsService.cs
    │   │   │   ├── IPrintService.cs
    │   │   │   ├── IReportDesignerService.cs
    │   │   │   ├── IReportService.cs
    │   │   │   ├── IResourceLoader.cs
    │   │   │   └── ITextEditService.cs
    │   │   ├── EmailExportParams.cs
    │   │   ├── Implementation
    │   │   │   ├── ConnectionService.cs
    │   │   │   ├── DesignerUtilsService.cs
    │   │   │   ├── ExportService.cs
    │   │   │   ├── InternalResourceLoader.cs
    │   │   │   ├── PrintService.cs
    │   │   │   ├── ReportDesignerService.cs
    │   │   │   ├── ReportService.cs
    │   │   │   └── TextEditService.cs
    │   │   └── ServicesParamsModels.cs
    │   └── Templates
    │       ├── body.cs
    │       ├── ExportSettings
    │       │   ├── DocxExportSettings.cs
    │       │   ├── EmailExportSettings.cs
    │       │   ├── HtmlExportSettings.cs
    │       │   ├── ImageExportSettings.cs
    │       │   ├── OdsExportSettings.cs
    │       │   ├── OdtExportSettings.cs
    │       │   ├── PdfExportSettings.cs
    │       │   ├── PptxExportSettings.cs
    │       │   ├── RtfExportSettings.cs
    │       │   ├── SvgExportSettings.cs
    │       │   ├── XlsxExportSettings.cs
    │       │   └── XmlExportSettings.cs
    │       ├── main.cs
    │       ├── modalcontainer.cs
    │       ├── outline.cs
    │       ├── script.cs
    │       ├── style.cs
    │       ├── tabs.cs
    │       └── toolbar.cs
    ├── FastReport.OpenSource
    │   ├── BandBase.Core.cs
    │   ├── Base.Core.cs
    │   ├── CellularTextObject.Core.cs
    │   ├── Code
    │   │   ├── AssemblyDescriptor.Core.cs
    │   │   └── ExpressionDescriptor.Core.cs
    │   ├── ComponentBase.Core.cs
    │   ├── CrossView
    │   │   ├── CrossViewHelper.Core.cs
    │   │   └── CrossViewObject.Core.cs
    │   ├── Data
    │   │   ├── CsvDataConnection.Core.cs
    │   │   ├── DataConnectionBase.Core.cs
    │   │   └── TableDataSource.Core.cs
    │   ├── Dialog
    │   │   └── DialogPage.Core.cs
    │   ├── Engine
    │   │   ├── ReportEngine.Core.cs
    │   │   ├── ReportEngine.Dialogs.OpenSource.cs
    │   │   └── ReportEngine.OpenSource.cs
    │   ├── Export
    │   │   ├── ExportBase.OpenSource.cs
    │   │   └── Html
    │   │       └── HTMLExport.OpenSource.cs
    │   ├── FastReport.OpenSource.csproj
    │   ├── HtmlObject.Core.cs
    │   ├── InternalVisibleTo.OpenSource.cs
    │   ├── Matrix
    │   │   └── MatrixObject.Core.cs
    │   ├── PictureObjectBase.Core.cs
    │   ├── PictureObject.Core.cs
    │   ├── PolyLineObject.Core.cs
    │   ├── Preview
    │   │   ├── PageCache.Core.cs
    │   │   └── PreparedPage.OpenSource.cs
    │   ├── ReportComponentBase.Core.cs
    │   ├── Report.Core.cs
    │   ├── ReportPage.Core.cs
    │   ├── ReportSettings.Core.cs
    │   ├── StyleBase.Core.cs
    │   ├── Table
    │   │   └── TableBase.Core.cs
    │   ├── TextObject.Core.cs
    │   └── Utils
    │       ├── Config.Core.cs
    │       ├── Config.OpenSource.cs
    │       ├── ExportsOptions.OpenSource.cs
    │       ├── NetRepository.Core.cs
    │       └── RegisteredObjects.Core.cs
    ├── FastReport.OpenSource.sln
    ├── FastReport.OpenSource.snk
    ├── FastReport.Web.Base
    │   └── ScriptSecurity.cs
    ├── LICENSE.md
    ├── Localization
    │   ├── Arabic.frl
    │   ├── Armenian.frl
    │   ├── Chinese (Simplified).frl
    │   ├── Chinese (Traditional).frl
    │   ├── Croatian.frl
    │   ├── Czech.frl
    │   ├── Danish.frl
    │   ├── Dutch.frl
    │   ├── French.frl
    │   ├── German.frl
    │   ├── Greek.frl
    │   ├── Hungarian.frl
    │   ├── Italian.frl
    │   ├── Persian.frl
    │   ├── Polish.frl
    │   ├── Portuguese (Brazil).frl
    │   ├── Portuguese.frl
    │   ├── readme.txt
    │   ├── Romanian.frl
    │   ├── Russian.frl
    │   ├── Serbian.frl
    │   ├── Slovak.frl
    │   ├── Slovenian.frl
    │   ├── Spanish.frl
    │   ├── Swedish.frl
    │   ├── Thai.frl
    │   ├── Turkish.frl
    │   └── Ukrainian.frl
    ├── Pack
    │   ├── BuildScripts
    │   │   ├── buildScript.csproj
    │   │   ├── CakeAPI
    │   │   │   └── CakeAPI.cs
    │   │   ├── Tasks
    │   │   │   ├── BaseTasks.cs
    │   │   │   ├── Constants.cs
    │   │   │   ├── LocalizationPackage.cs
    │   │   │   ├── OpenSourceTasks.cs
    │   │   │   └── Tests.cs
    │   │   └── Tools
    │   │       ├── DebugAttribute.cs
    │   │       ├── DependsOnAttribute.cs
    │   │       ├── Graph.cs
    │   │       └── Startup.cs
    │   ├── FastReport.Localization
    │   │   ├── build
    │   │   │   └── FastReport.Localization.targets
    │   │   ├── buildMultiTargeting
    │   │   │   └── FastReport.Localization.targets
    │   │   └── buildTransitive
    │   │       └── FastReport.Localization.targets
    │   ├── FastReport MIT license.md
    │   ├── FastReport.OpenSource
    │   │   ├── build
    │   │   │   └── FastReport.OpenSource.props
    │   │   ├── buildMultiTargeting
    │   │   │   └── FastReport.OpenSource.props
    │   │   └── buildTransitive
    │   │       └── FastReport.OpenSource.props
    │   └── frlogo192.png
    ├── pack.bat
    ├── pack.sh
    ├── publiccode.yml
    ├── README.md
    ├── SECURITY.md
    ├── Tools
    │   ├── FastReport.OpenSource.Documentation
    │   │   ├── docfx.json
    │   │   ├── favicon.ico
    │   │   ├── index.md
    │   │   ├── logo.png
    │   │   └── toc.yml
    │   └── FastReport.Tests.OpenSource
    │       ├── BaseTests.cs
    │       ├── Data
    │       │   └── JsonParserTests.cs
    │       ├── FastReport.OpenSource.Tests.snk
    │       ├── FastReport.Tests.OpenSource.csproj
    │       ├── FastReport.Tests.OpenSource.sln
    │       ├── ReportObjectTests
    │       │   └── TextObjectTests.cs
    │       └── TextObjectBaseTests.cs
    └── UsedPackages.version

229 directories, 1515 files

标签:

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警