在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → FastReport 控件原码

FastReport 控件原码

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:8.78M
  • 下载次数:41
  • 浏览次数:423
  • 发布时间:2022-09-19
  • 实例类别:C#语言基础
  • 发 布 人:jgc517
  • 文件格式:.zip
  • 所需积分:2
 相关标签: FastReport Fast ST re fa

实例介绍

【实例简介】FastReport 控件原码

FastReport 控件原码控件原码,最好用的打印控件

【实例截图】

from clipboard

【核心代码】
.
├── FastReport-master
│   ├── CHANGELOG.md
│   ├── CODE_OF_CONDUCT.md
│   ├── CONTRIBUTING.md
│   ├── Demos
│   │   ├── OpenSource
│   │   │   ├── AvaloniaOpenSourceViewer
│   │   │   │   ├── App.xaml
│   │   │   │   ├── App.xaml.cs
│   │   │   │   ├── MainWindow.xaml
│   │   │   │   ├── MainWindow.xaml.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   └── Resources.resx
│   │   │   │   ├── Resources
│   │   │   │   │   ├── 001.ico
│   │   │   │   │   ├── 068.png
│   │   │   │   │   ├── frst.png
│   │   │   │   │   ├── lst.png
│   │   │   │   │   ├── nxt.png
│   │   │   │   │   └── prr.png
│   │   │   │   ├── Viewer.csproj
│   │   │   │   ├── Viewer.sln
│   │   │   │   └── nuget.config
│   │   │   ├── DataFromArray
│   │   │   │   ├── DataFromArray
│   │   │   │   │   ├── DataFromArray.csproj
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── Utils.cs
│   │   │   │   │   └── in
│   │   │   │   │       └── report.frx
│   │   │   │   └── DataFromArray.sln
│   │   │   ├── DataFromBusinessObject
│   │   │   │   ├── DataFromBusinessObject
│   │   │   │   │   ├── Category.cs
│   │   │   │   │   ├── DataFromBusinessObject.csproj
│   │   │   │   │   ├── Product.cs
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── Utils.cs
│   │   │   │   │   └── in
│   │   │   │   │       └── report.frx
│   │   │   │   └── DataFromBusinessObject.sln
│   │   │   ├── DataFromDataSet
│   │   │   │   ├── DataFromDataSet
│   │   │   │   │   ├── DataFromDataSet.csproj
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── Utils.cs
│   │   │   │   │   └── in
│   │   │   │   │       └── report.frx
│   │   │   │   └── DataFromDataSet.sln
│   │   │   ├── FastReport.OpenSource.MVC
│   │   │   │   ├── Controllers
│   │   │   │   │   └── HomeController.cs
│   │   │   │   ├── FastReport.OpenSource.MVC.csproj
│   │   │   │   ├── FastReport.OpenSource.MVC.sln
│   │   │   │   ├── FastreportContext.cs
│   │   │   │   ├── Models
│   │   │   │   │   ├── Categories.cs
│   │   │   │   │   ├── Customers.cs
│   │   │   │   │   ├── Employees.cs
│   │   │   │   │   ├── ErrorViewModel.cs
│   │   │   │   │   ├── MatrixDemo.cs
│   │   │   │   │   ├── Orderdetails.cs
│   │   │   │   │   ├── Orders.cs
│   │   │   │   │   ├── Products.cs
│   │   │   │   │   ├── Shippers.cs
│   │   │   │   │   ├── Suppliers.cs
│   │   │   │   │   └── Unicode.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── launchSettings.json
│   │   │   │   ├── Startup.cs
│   │   │   │   ├── Views
│   │   │   │   │   ├── Home
│   │   │   │   │   │   ├── About.cshtml
│   │   │   │   │   │   ├── Contact.cshtml
│   │   │   │   │   │   └── Index.cshtml
│   │   │   │   │   ├── Shared
│   │   │   │   │   │   ├── Error.cshtml
│   │   │   │   │   │   ├── _Layout.cshtml
│   │   │   │   │   │   └── _ValidationScriptsPartial.cshtml
│   │   │   │   │   ├── _ViewImports.cshtml
│   │   │   │   │   └── _ViewStart.cshtml
│   │   │   │   ├── appsettings.Development.json
│   │   │   │   ├── appsettings.json
│   │   │   │   ├── bower.json
│   │   │   │   ├── bundleconfig.json
│   │   │   │   ├── fastreport.db
│   │   │   │   ├── readme.txt
│   │   │   │   └── wwwroot
│   │   │   │       ├── css
│   │   │   │       │   ├── site.css
│   │   │   │       │   └── site.min.css
│   │   │   │       ├── favicon.ico
│   │   │   │       ├── images
│   │   │   │       │   ├── banner1.svg
│   │   │   │       │   ├── banner2.svg
│   │   │   │       │   ├── banner3.svg
│   │   │   │       │   └── banner4.svg
│   │   │   │       ├── js
│   │   │   │       │   ├── site.js
│   │   │   │       │   └── site.min.js
│   │   │   │       └── lib
│   │   │   │           ├── bootstrap
│   │   │   │           │   ├── LICENSE
│   │   │   │           │   └── dist
│   │   │   │           │       ├── css
│   │   │   │           │       │   ├── bootstrap-theme.css
│   │   │   │           │       │   ├── bootstrap-theme.css.map
│   │   │   │           │       │   ├── bootstrap-theme.min.css
│   │   │   │           │       │   ├── bootstrap-theme.min.css.map
│   │   │   │           │       │   ├── bootstrap.css
│   │   │   │           │       │   ├── bootstrap.css.map
│   │   │   │           │       │   ├── bootstrap.min.css
│   │   │   │           │       │   └── bootstrap.min.css.map
│   │   │   │           │       ├── fonts
│   │   │   │           │       │   ├── glyphicons-halflings-regular.eot
│   │   │   │           │       │   ├── glyphicons-halflings-regular.svg
│   │   │   │           │       │   ├── glyphicons-halflings-regular.ttf
│   │   │   │           │       │   ├── glyphicons-halflings-regular.woff
│   │   │   │           │       │   └── glyphicons-halflings-regular.woff2
│   │   │   │           │       └── js
│   │   │   │           │           ├── bootstrap.js
│   │   │   │           │           ├── bootstrap.min.js
│   │   │   │           │           └── npm.js
│   │   │   │           ├── jquery
│   │   │   │           │   ├── LICENSE.txt
│   │   │   │           │   └── dist
│   │   │   │           │       ├── jquery.js
│   │   │   │           │       ├── jquery.min.js
│   │   │   │           │       └── jquery.min.map
│   │   │   │           ├── jquery-validation
│   │   │   │           │   ├── LICENSE.md
│   │   │   │           │   └── dist
│   │   │   │           │       ├── additional-methods.js
│   │   │   │           │       ├── additional-methods.min.js
│   │   │   │           │       ├── jquery.validate.js
│   │   │   │           │       └── jquery.validate.min.js
│   │   │   │           └── jquery-validation-unobtrusive
│   │   │   │               ├── jquery.validate.unobtrusive.js
│   │   │   │               └── jquery.validate.unobtrusive.min.js
│   │   │   ├── FastReport.OpenSource.Web.MVC
│   │   │   │   ├── Controllers
│   │   │   │   │   └── HomeController.cs
│   │   │   │   ├── FastReport.OpenSource.Web.MVC.csproj
│   │   │   │   ├── FastReport.OpenSource.Web.MVC.sln
│   │   │   │   ├── Models
│   │   │   │   │   └── HomeModel.cs
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── launchSettings.json
│   │   │   │   ├── Startup.cs
│   │   │   │   ├── Views
│   │   │   │   │   ├── Home
│   │   │   │   │   │   └── Index.cshtml
│   │   │   │   │   ├── Shared
│   │   │   │   │   │   └── _Layout.cshtml
│   │   │   │   │   ├── _ViewImports.cshtml
│   │   │   │   │   └── _ViewStart.cshtml
│   │   │   │   ├── appsettings.Development.json
│   │   │   │   ├── appsettings.json
│   │   │   │   └── wwwroot
│   │   │   │       ├── css
│   │   │   │       │   └── site.css
│   │   │   │       └── favicon.ico
│   │   │   ├── FastReport.OpenSource.Web.Vue
│   │   │   │   ├── Client
│   │   │   │   │   ├── README.md
│   │   │   │   │   ├── _start_dev.bat
│   │   │   │   │   ├── build
│   │   │   │   │   │   ├── build.js
│   │   │   │   │   │   ├── check-versions.js
│   │   │   │   │   │   ├── utils.js
│   │   │   │   │   │   ├── vue-loader.conf.js
│   │   │   │   │   │   ├── webpack.base.conf.js
│   │   │   │   │   │   ├── webpack.dev.conf.js
│   │   │   │   │   │   └── webpack.prod.conf.js
│   │   │   │   │   ├── config
│   │   │   │   │   │   ├── dev.env.js
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   └── prod.env.js
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── package-lock.json
│   │   │   │   │   ├── package.json
│   │   │   │   │   ├── src
│   │   │   │   │   │   ├── App.vue
│   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   └── logo.png
│   │   │   │   │   │   ├── components
│   │   │   │   │   │   │   └── Reports.vue
│   │   │   │   │   │   ├── main.js
│   │   │   │   │   │   └── router
│   │   │   │   │   │       └── index.js
│   │   │   │   │   └── static
│   │   │   │   ├── Controllers
│   │   │   │   │   └── ReportsController.cs
│   │   │   │   ├── FastReport.OpenSource.Web.Vue.csproj
│   │   │   │   ├── FastReport.OpenSource.Web.Vue.sln
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   └── launchSettings.json
│   │   │   │   ├── ReportEntity.cs
│   │   │   │   ├── ReportQuery.cs
│   │   │   │   ├── Startup.cs
│   │   │   │   ├── appsettings.Development.json
│   │   │   │   ├── appsettings.json
│   │   │   │   ├── package-lock.json
│   │   │   │   ├── readme.txt
│   │   │   │   └── wwwroot
│   │   │   │       └── App_Data
│   │   │   │           ├── Barcode.frx
│   │   │   │           ├── Master-Detail.frx
│   │   │   │           └── nwind.xml
│   │   │   ├── PdfExport
│   │   │   │   ├── PdfExport.csproj
│   │   │   │   ├── PdfExport.sln
│   │   │   │   └── Program.cs
│   │   │   ├── ReportFromCode
│   │   │   │   ├── ReportFromCode
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── ReportFromCode.csproj
│   │   │   │   │   ├── Utils.cs
│   │   │   │   │   └── in
│   │   │   │   │       └── nwind.xml
│   │   │   │   └── ReportFromCode.sln
│   │   │   ├── SPAOnlineDesigner
│   │   │   │   ├── App_Data
│   │   │   │   │   ├── Master-Detail.frx
│   │   │   │   │   └── nwind.xml
│   │   │   │   ├── ClientApp
│   │   │   │   │   ├── README.md
│   │   │   │   │   ├── e2e
│   │   │   │   │   │   ├── app.e2e-spec.ts
│   │   │   │   │   │   ├── app.po.ts
│   │   │   │   │   │   └── tsconfig.e2e.json
│   │   │   │   │   ├── karma.conf.js
│   │   │   │   │   ├── package-lock.json
│   │   │   │   │   ├── package.json
│   │   │   │   │   ├── protractor.conf.js
│   │   │   │   │   ├── src
│   │   │   │   │   │   ├── app
│   │   │   │   │   │   │   ├── app.component.css
│   │   │   │   │   │   │   ├── app.component.ts
│   │   │   │   │   │   │   ├── app.module.ts
│   │   │   │   │   │   │   ├── http.service.ts
│   │   │   │   │   │   │   └── safeHtml.pipe.ts
│   │   │   │   │   │   ├── assets
│   │   │   │   │   │   ├── environments
│   │   │   │   │   │   │   ├── environment.prod.ts
│   │   │   │   │   │   │   └── environment.ts
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── main.ts
│   │   │   │   │   │   ├── polyfills.ts
│   │   │   │   │   │   ├── styles.css
│   │   │   │   │   │   ├── test.ts
│   │   │   │   │   │   ├── tsconfig.app.json
│   │   │   │   │   │   ├── tsconfig.spec.json
│   │   │   │   │   │   └── typings.d.ts
│   │   │   │   │   ├── tsconfig.json
│   │   │   │   │   └── tslint.json
│   │   │   │   ├── Controllers
│   │   │   │   │   └── SampleDataController.cs
│   │   │   │   ├── Pages
│   │   │   │   │   ├── Error.cshtml.cs
│   │   │   │   │   └── _ViewImports.cshtml
│   │   │   │   ├── Program.cs
│   │   │   │   ├── SPAOnlineDesigner.csproj
│   │   │   │   ├── SPAOnlineDesigner.sln
│   │   │   │   ├── Startup.cs
│   │   │   │   ├── Views
│   │   │   │   │   └── SampleData
│   │   │   │   │       ├── Design.cshtml
│   │   │   │   │       └── SaveDesignedReport.cshtml
│   │   │   │   ├── appsettings.Development.json
│   │   │   │   ├── appsettings.json
│   │   │   │   └── wwwroot
│   │   │   │       ├── WebReportDesigner
│   │   │   │       │   └── index.html
│   │   │   │       └── favicon.ico
│   │   │   ├── SPAWebReport
│   │   │   │   ├── App_Data
│   │   │   │   │   ├── Master-Detail.frx
│   │   │   │   │   └── nwind.xml
│   │   │   │   ├── ClientApp
│   │   │   │   │   ├── README.md
│   │   │   │   │   ├── e2e
│   │   │   │   │   │   ├── app.e2e-spec.ts
│   │   │   │   │   │   ├── app.po.ts
│   │   │   │   │   │   └── tsconfig.e2e.json
│   │   │   │   │   ├── karma.conf.js
│   │   │   │   │   ├── package-lock.json
│   │   │   │   │   ├── package.json
│   │   │   │   │   ├── protractor.conf.js
│   │   │   │   │   ├── src
│   │   │   │   │   │   ├── app
│   │   │   │   │   │   │   ├── app.component.css
│   │   │   │   │   │   │   ├── app.component.html
│   │   │   │   │   │   │   ├── app.component.ts
│   │   │   │   │   │   │   ├── app.module.ts
│   │   │   │   │   │   │   ├── counter
│   │   │   │   │   │   │   │   ├── counter.component.html
│   │   │   │   │   │   │   │   ├── counter.component.spec.ts
│   │   │   │   │   │   │   │   └── counter.component.ts
│   │   │   │   │   │   │   ├── fetch-data
│   │   │   │   │   │   │   │   ├── fetch-data.component.html
│   │   │   │   │   │   │   │   └── fetch-data.component.ts
│   │   │   │   │   │   │   ├── home
│   │   │   │   │   │   │   │   ├── home.component.html
│   │   │   │   │   │   │   │   └── home.component.ts
│   │   │   │   │   │   │   ├── http.service.ts
│   │   │   │   │   │   │   ├── nav-menu
│   │   │   │   │   │   │   │   ├── nav-menu.component.css
│   │   │   │   │   │   │   │   ├── nav-menu.component.html
│   │   │   │   │   │   │   │   └── nav-menu.component.ts
│   │   │   │   │   │   │   ├── safeHtml.pipe.ts
│   │   │   │   │   │   │   ├── safeUrl.pipe.ts
│   │   │   │   │   │   │   └── safeUrl.ts
│   │   │   │   │   │   ├── assets
│   │   │   │   │   │   ├── environments
│   │   │   │   │   │   │   ├── environment.prod.ts
│   │   │   │   │   │   │   └── environment.ts
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   ├── main.ts
│   │   │   │   │   │   ├── polyfills.ts
│   │   │   │   │   │   ├── styles.css
│   │   │   │   │   │   ├── test.ts
│   │   │   │   │   │   ├── tsconfig.app.json
│   │   │   │   │   │   ├── tsconfig.spec.json
│   │   │   │   │   │   └── typings.d.ts
│   │   │   │   │   ├── tsconfig.json
│   │   │   │   │   └── tslint.json
│   │   │   │   ├── Controllers
│   │   │   │   │   └── SampleDataController.cs
│   │   │   │   ├── Pages
│   │   │   │   │   ├── Error.cshtml
│   │   │   │   │   ├── Error.cshtml.cs
│   │   │   │   │   └── _ViewImports.cshtml
│   │   │   │   ├── Program.cs
│   │   │   │   ├── SPAWebReport.csproj
│   │   │   │   ├── SPAWebReport.sln
│   │   │   │   ├── Startup.cs
│   │   │   │   ├── Views
│   │   │   │   │   └── SampleData
│   │   │   │   │       └── ShowReport.cshtml
│   │   │   │   ├── appsettings.Development.json
│   │   │   │   ├── appsettings.json
│   │   │   │   └── wwwroot
│   │   │   │       └── favicon.ico
│   │   │   ├── UserFunctions
│   │   │   │   ├── UserFunctions
│   │   │   │   │   ├── MyFunctions.cs
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── UserFunctions.csproj
│   │   │   │   │   └── Utils.cs
│   │   │   │   └── UserFunctions.sln
│   │   │   ├── WPFOpenSourceViewer
│   │   │   │   ├── OpenSourceCustomViewer
│   │   │   │   │   ├── App.config
│   │   │   │   │   ├── App.xaml
│   │   │   │   │   ├── App.xaml.cs
│   │   │   │   │   ├── MainWindow.xaml
│   │   │   │   │   ├── MainWindow.xaml.cs
│   │   │   │   │   ├── OpenSourceCustomViewer.csproj
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── Resources
│   │   │   │   │   │   ├── 001.ico
│   │   │   │   │   │   ├── 068.png
│   │   │   │   │   │   ├── frst.png
│   │   │   │   │   │   ├── lst.png
│   │   │   │   │   │   ├── nxt.png
│   │   │   │   │   │   └── prr.png
│   │   │   │   │   └── packages.config
│   │   │   │   └── OpenSourceCustomViewer.sln
│   │   │   └── WinFormsOpenSourceViewer
│   │   │       ├── WinFormsOpenSource
│   │   │       │   ├── App.config
│   │   │       │   ├── Form1.Designer.cs
│   │   │       │   ├── Form1.cs
│   │   │       │   ├── Form1.resx
│   │   │       │   ├── Program.cs
│   │   │       │   ├── Properties
│   │   │       │   │   ├── AssemblyInfo.cs
│   │   │       │   │   ├── Resources.Designer.cs
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Settings.Designer.cs
│   │   │       │   │   └── Settings.settings
│   │   │       │   ├── Reports
│   │   │       │   │   ├── CheckBox.frx
│   │   │       │   │   ├── Image.frx
│   │   │       │   │   ├── Lines and Shapes.frx
│   │   │       │   │   ├── Master-Detail.frx
│   │   │       │   │   ├── Matrix.frx
│   │   │       │   │   ├── Pharmacode.frx
│   │   │       │   │   ├── Polygon.frx
│   │   │       │   │   └── nwind.xml
│   │   │       │   ├── Resources
│   │   │       │   │   ├── 068.png
│   │   │       │   │   ├── frst.png
│   │   │       │   │   ├── lst.png
│   │   │       │   │   ├── nxt.png
│   │   │       │   │   └── prr.png
│   │   │       │   ├── WinFormsOpenSource.csproj
│   │   │       │   └── packages.config
│   │   │       └── WinFormsOpenSource.sln
│   │   └── Reports
│   │       ├── About Microsoft Chart.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
│   │       ├── Advanced Matrix.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, Wrapped.frx
│   │       ├── Column Datasource.frx
│   │       ├── Complete upto N Rows.frx
│   │       ├── Complex (Hyperlinks, Outline, TOC).frx
│   │       ├── Complex (Master-detail Group).frx
│   │       ├── Complex Column Headers.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 With Chart.frx
│   │       ├── Interactive Matrix.frx
│   │       ├── Interactive Report - Details.frx
│   │       ├── Interactive Report, 2-in-1.frx
│   │       ├── Interactive Report.frx
│   │       ├── Keep Together.frx
│   │       ├── Labels With Dialog.frx
│   │       ├── Labels.frx
│   │       ├── Lines and Shapes.frx
│   │       ├── Mail Merge.frx
│   │       ├── Map.frx
│   │       ├── Master-Detail.frx
│   │       ├── Matrix With Columns Only.frx
│   │       ├── Matrix With Rows Only.frx
│   │       ├── Matrix.frx
│   │       ├── Microsoft Chart Sample.frx
│   │       ├── Multiplication Table.frx
│   │       ├── 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 Total in The Group Header.frx
│   │       ├── Print on Previous Page.frx
│   │       ├── Purchase Order.frx
│   │       ├── QR-Codes.frx
│   │       ├── Repeat Headers.frx
│   │       ├── Report With Cover Page.frx
│   │       ├── RichText.frx
│   │       ├── Row Datasource, Detail Rows.frx
│   │       ├── Row Datasource, Master-Detail.frx
│   │       ├── Row Datasource.frx
│   │       ├── SVG.frx
│   │       ├── Sales in Germany.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
│   │       ├── Table.frx
│   │       ├── Text.frx
│   │       ├── TextureFill.frx
│   │       ├── The USA Map.frx
│   │       ├── Two Cell Dimensions, Side-by-Side.frx
│   │       ├── Two Cell Dimensions.frx
│   │       ├── Two Column Dimensions.frx
│   │       ├── Two Matrices.frx
│   │       ├── Two Row Dimensions.frx
│   │       ├── Unicode.frx
│   │       ├── Using Expressions.frx
│   │       ├── Watermark.frx
│   │       ├── World Map.frx
│   │       ├── World Sales by City.frx
│   │       ├── World Sales, Interactive.frx
│   │       ├── World Sales.frx
│   │       ├── ZipCode.frx
│   │       ├── nwind.xml
│   │       └── reports.xml
│   ├── Directory.Build.targets
│   ├── Extras
│   │   ├── Core
│   │   │   └── FastReport.Data
│   │   │       ├── FastReport.Data.Cassandra
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── CassandraConnectionEditor.Designer.cs
│   │   │       │   ├── CassandraConnectionEditor.cs
│   │   │       │   ├── CassandraConnectionEditor.resx
│   │   │       │   ├── CassandraDataConnection.DesignExt.cs
│   │   │       │   ├── CassandraDataConnection.cs
│   │   │       │   ├── FastReport.OpenSource.Data.Cassandra.csproj
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.ClickHouse
│   │   │       │   ├── ClickHouseAssemblyInitializer.cs
│   │   │       │   ├── ClickHouseConnection.DesignExt.cs
│   │   │       │   ├── ClickHouseConnectionEditor.Designer.cs
│   │   │       │   ├── ClickHouseConnectionEditor.cs
│   │   │       │   ├── ClickHouseConnectionEditor.resx
│   │   │       │   ├── ClickHouseDataConnection.cs
│   │   │       │   ├── Directory.Build.targets
│   │   │       │   └── FastReport.OpenSource.Data.ClickHouse.csproj
│   │   │       ├── FastReport.Data.Couchbase
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── CouchbaseConnectionEditor.Designer.cs
│   │   │       │   ├── CouchbaseConnectionEditor.cs
│   │   │       │   ├── CouchbaseConnectionEditor.resx
│   │   │       │   ├── CouchbaseConnectionStringBuilder.cs
│   │   │       │   ├── CouchbaseDataConnection.DesignExt.cs
│   │   │       │   ├── CouchbaseDataConnection.cs
│   │   │       │   ├── Directory.Build.targets
│   │   │       │   ├── FastReport.OpenSource.Data.Couchbase.csproj
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.Excel
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── ExcelConnectionEditor.Designer.cs
│   │   │       │   ├── ExcelConnectionEditor.cs
│   │   │       │   ├── ExcelConnectionEditor.resx
│   │   │       │   ├── ExcelDataConnection.DesignExt.cs
│   │   │       │   ├── ExcelDataConnection.cs
│   │   │       │   ├── FastReport.Excel.sln
│   │   │       │   ├── FastReport.OpenSource.Data.Excel.csproj
│   │   │       │   ├── packages.config
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.Firebird
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── Directory.Build.targets
│   │   │       │   ├── FastReport.OpenSource.Data.Firebird.csproj
│   │   │       │   ├── FirebirdConnectionEditor.Designer.cs
│   │   │       │   ├── FirebirdConnectionEditor.cs
│   │   │       │   ├── FirebirdConnectionEditor.resx
│   │   │       │   ├── FirebirdDataConnection.DesignExt.cs
│   │   │       │   ├── FirebirdDataConnection.cs
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.Json
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── Directory.Build.targets
│   │   │       │   ├── 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.DesignExt.cs
│   │   │       │   ├── JsonDataConnection.cs
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.Linter
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── FastReport.OpenSource.Data.Linter.csproj
│   │   │       │   ├── LinterConnection.DesignExt.cs
│   │   │       │   ├── LinterDataConnection.cs
│   │   │       │   ├── LinterDataConnectionEditor.Designer.cs
│   │   │       │   ├── LinterDataConnectionEditor.cs
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.MongoDB
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── Community_FastReport.Data.MongoDB.csproj
│   │   │       │   ├── Directory.Build.targets
│   │   │       │   ├── FastReport.OpenSource.Data.MongoDB.csproj
│   │   │       │   ├── MongoDBConnectionEditor.Designer.cs
│   │   │       │   ├── MongoDBConnectionEditor.cs
│   │   │       │   ├── MongoDBConnectionEditor.resx
│   │   │       │   ├── MongoDBDataConnection.DesignExt.cs
│   │   │       │   ├── MongoDBDataConnection.cs
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.MsSql
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── Directory.Build.targets
│   │   │       │   ├── FastReport.OpenSource.Data.MsSql.csproj
│   │   │       │   ├── MsSqlDataConnection.cs
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.MySql
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── Directory.Build.targets
│   │   │       │   ├── FastReport.OpenSource.Data.MySql.csproj
│   │   │       │   ├── MySqlConnectionEditor.Designer.cs
│   │   │       │   ├── MySqlConnectionEditor.cs
│   │   │       │   ├── MySqlConnectionEditor.resx
│   │   │       │   ├── MySqlDataConnection.DesignExt.cs
│   │   │       │   ├── MySqlDataConnection.cs
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.OracleODPCore
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── Directory.Build.targets
│   │   │       │   ├── FastReport.OpenSource.Data.OracleODPCore.csproj
│   │   │       │   ├── OracleConnectionEditor.Designer.cs
│   │   │       │   ├── OracleConnectionEditor.cs
│   │   │       │   ├── OracleConnectionEditor.resx
│   │   │       │   ├── OracleDataConnection.cs
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.Postgres
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── Directory.Build.targets
│   │   │       │   ├── FastReport.OpenSource.Data.Postgres.csproj
│   │   │       │   ├── PostgresConnectionEditor.Designer.cs
│   │   │       │   ├── PostgresConnectionEditor.cs
│   │   │       │   ├── PostgresConnectionEditor.resx
│   │   │       │   ├── PostgresDataConnection.DesignExt.cs
│   │   │       │   ├── PostgresDataConnection.cs
│   │   │       │   └── readme.txt
│   │   │       ├── FastReport.Data.RavenDB
│   │   │       │   ├── AssemblyInitializer.cs
│   │   │       │   ├── Directory.Build.targets
│   │   │       │   ├── FastReport.OpenSource.Data.RavenDB.csproj
│   │   │       │   ├── RavenDBConnectionEditor.Designer.cs
│   │   │       │   ├── RavenDBConnectionEditor.cs
│   │   │       │   ├── RavenDBConnectionEditor.resx
│   │   │       │   ├── RavenDBConnectionStringBuilder.cs
│   │   │       │   ├── RavenDBDataConnection.DesignExt.cs
│   │   │       │   ├── RavenDBDataConnection.cs
│   │   │       │   └── readme.txt
│   │   │       └── FastReport.Data.SQLite
│   │   │           ├── AssemblyInitializer.cs
│   │   │           ├── Directory.Build.targets
│   │   │           ├── FastReport.OpenSource.Data.SQLite.csproj
│   │   │           ├── SQLiteConnectionEditor.Designer.cs
│   │   │           ├── SQLiteConnectionEditor.cs
│   │   │           ├── SQLiteConnectionEditor.resx
│   │   │           ├── SQLiteDataConnection.DesignExt.cs
│   │   │           ├── SQLiteDataConnection.cs
│   │   │           └── readme.txt
│   │   ├── FastReport.Plugins.snk
│   │   ├── OpenSource
│   │   │   └── FastReport.OpenSource.Export.PdfSimple
│   │   │       ├── FastReport.OpenSource.Export.PdfSimple
│   │   │       │   ├── FastReport.OpenSource.Export.PdfSimple.csproj
│   │   │       │   ├── PDFSimpleExport.Config.cs
│   │   │       │   ├── PDFSimpleExport.Images.cs
│   │   │       │   ├── PDFSimpleExport.cs
│   │   │       │   ├── 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
│   │   │       ├── FastReport.OpenSource.Export.PdfSimple.Tests
│   │   │       │   ├── FastReport.OpenSource.Export.PdfSimple.Tests.csproj
│   │   │       │   ├── PdfSimpleExportTests.cs
│   │   │       │   ├── TestReport.fpx
│   │   │       │   └── Watermark.fpx
│   │   │       └── FastReport.OpenSource.Export.PdfSimple.sln
│   │   └── 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.UnitTest
│   │       │   ├── FastReport.ReportBuilder.UnitTest.csproj
│   │       │   ├── Person.cs
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   ├── ReportTest.cs
│   │       │   └── packages.config
│   │       ├── FastReport.ReportBuilder.sln
│   │       ├── LICENSE.md
│   │       └── README.md
│   ├── FastReport
│   │   └── Resources
│   │       ├── CIS.frx
│   │       ├── DesignerControl.bmp
│   │       ├── DownArrow.cur
│   │       ├── EnvironmentSettings.bmp
│   │       ├── FastReport.config
│   │       ├── Format.cur
│   │       ├── Games
│   │       │   └── FastM1nesweeper.frx
│   │       ├── Hand.cur
│   │       ├── HandMove.cur
│   │       ├── 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
│   │       ├── 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
│   │       │   ├── Point.png
│   │       │   ├── PointAndFigure.png
│   │       │   ├── Polar.png
│   │       │   ├── Pyramid.png
│   │       │   ├── Radar.png
│   │       │   ├── Range.png
│   │       │   ├── RangeBar.png
│   │       │   ├── RangeColumn.png
│   │       │   ├── Renko.png
│   │       │   ├── Sand.xml
│   │       │   ├── Spline.png
│   │       │   ├── SplineArea.png
│   │       │   ├── SplineRange.png
│   │       │   ├── StackedArea.png
│   │       │   ├── StackedArea100.png
│   │       │   ├── StackedBar.png
│   │       │   ├── StackedBar100.png
│   │       │   ├── StackedColumn.png
│   │       │   ├── StackedColumn100.png
│   │       │   ├── Steel.xml
│   │       │   ├── StepLine.png
│   │       │   ├── Stock.png
│   │       │   └── ThreeLineBreak.png
│   │       ├── OoXML
│   │       │   ├── settings.xml
│   │       │   ├── styles.xml
│   │       │   └── theme1.xml
│   │       ├── Pdf
│   │       │   ├── MetaData.xml
│   │       │   ├── MetaDataX3.xml
│   │       │   ├── MetaDataX4.xml
│   │       │   ├── pdfaprofile.icc
│   │       │   ├── pdfcmykprofile.icc
│   │       │   └── pdfxprofile.icc
│   │       ├── PreviewControl.bmp
│   │       ├── Report.bmp
│   │       ├── Ribbon
│   │       │   ├── AddDataSource.png
│   │       │   ├── AlignMenu.png
│   │       │   ├── AlignToGrid.png
│   │       │   ├── Bands.png
│   │       │   ├── BringToFront.png
│   │       │   ├── ChooseData.png
│   │       │   ├── FitToGrid.png
│   │       │   ├── Format.png
│   │       │   ├── Group.png
│   │       │   ├── Grouping.png
│   │       │   ├── Highlight.png
│   │       │   ├── Page.png
│   │       │   ├── PageSetup.png
│   │       │   ├── Panels.png
│   │       │   ├── Paste.png
│   │       │   ├── Replace.png
│   │       │   ├── Report.png
│   │       │   ├── Report1.png
│   │       │   ├── SendToBack.png
│   │       │   ├── SizeMenu.png
│   │       │   ├── SpacingMenu.png
│   │       │   ├── Ungroup.png
│   │       │   ├── ViewGridlines.png
│   │       │   └── ViewGuides.png
│   │       ├── RightArrow.cur
│   │       ├── SVG
│   │       │   └── svg11.dtd
│   │       ├── buttons-1-hi.png
│   │       ├── buttons-1.png
│   │       ├── buttons.png
│   │       ├── cross.frss
│   │       ├── defaultAvatar.jpg
│   │       ├── doc.xml
│   │       ├── en.xml
│   │       ├── icon16.ico
│   │       ├── labels.dat
│   │       ├── reportstyles.frss
│   │       ├── samplereportcolumnar.frx
│   │       ├── samplereporttabular.frx
│   │       └── samplestylereport.frx
│   ├── 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
│   │   │   ├── BarcodeMSI.cs
│   │   │   ├── BarcodeMaxiCode.cs
│   │   │   ├── BarcodeObject.cs
│   │   │   ├── BarcodePDF417.cs
│   │   │   ├── BarcodePharmacode.cs
│   │   │   ├── BarcodePlessey.cs
│   │   │   ├── BarcodePostNet.cs
│   │   │   ├── BarcodeQR.cs
│   │   │   ├── BarcodeUPC.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
│   │   │   ├── Column.cs
│   │   │   ├── ColumnCollection.cs
│   │   │   ├── CommandParameter.cs
│   │   │   ├── CommandParameterCollection.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
│   │   │   ├── Elasticsearch
│   │   │   │   ├── ESDataSourceConnection.cs
│   │   │   │   └── ESDataSourceConnectionStringBuilder.cs
│   │   │   ├── JsonConnection
│   │   │   │   ├── IJsonProviderSourceConnection.cs
│   │   │   │   ├── JsonDataSourceConnection.cs
│   │   │   │   ├── JsonDataSourceConnectionStringBuilder.cs
│   │   │   │   ├── JsonParser
│   │   │   │   │   ├── JsonArray.cs
│   │   │   │   │   ├── JsonBase.cs
│   │   │   │   │   ├── JsonObject.cs
│   │   │   │   │   ├── JsonSchema.cs
│   │   │   │   │   └── JsonTextReader.cs
│   │   │   │   └── JsonTableDataSource.cs
│   │   │   ├── Parameter.cs
│   │   │   ├── ParameterCollection.cs
│   │   │   ├── Relation.cs
│   │   │   ├── RelationCollection.cs
│   │   │   ├── SliceCubeSource.cs
│   │   │   ├── SystemVariables.cs
│   │   │   ├── TableCollection.cs
│   │   │   ├── TableDataSource.cs
│   │   │   ├── Total.cs
│   │   │   ├── TotalCollection.cs
│   │   │   ├── ViewDataSource.cs
│   │   │   ├── VirtualDataSource.cs
│   │   │   ├── XmlConnectionStringBuilder.cs
│   │   │   └── XmlDataConnection.cs
│   │   ├── DataBand.cs
│   │   ├── DataFooterBand.cs
│   │   ├── DataHeaderBand.cs
│   │   ├── Engine
│   │   │   ├── ReportEngine.Bands.cs
│   │   │   ├── ReportEngine.Break.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
│   │   │   └── ReportEngine.cs
│   │   ├── Export
│   │   │   ├── ExportBase.cs
│   │   │   ├── ExportUtils.cs
│   │   │   ├── Html
│   │   │   │   ├── HTMLExport.cs
│   │   │   │   ├── HTMLExportDraw.cs
│   │   │   │   ├── HTMLExportLayers.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
│   │   │   ├── NumToWordSp.cs
│   │   │   ├── NumToWordsBase.cs
│   │   │   ├── NumToWordsDe.cs
│   │   │   ├── NumToWordsEn.cs
│   │   │   ├── NumToWordsEnGb.cs
│   │   │   ├── NumToWordsEs.cs
│   │   │   ├── NumToWordsFr.cs
│   │   │   ├── NumToWordsIn.cs
│   │   │   ├── NumToWordsNl.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
│   │   ├── IParent.cs
│   │   ├── Import
│   │   │   ├── ComponentsFactory.cs
│   │   │   ├── DevExpress
│   │   │   │   ├── DevExpressImport.XmlSource.cs
│   │   │   │   ├── DevExpressImport.cs
│   │   │   │   └── UnitsConverter.cs
│   │   │   ├── ImportBase.cs
│   │   │   ├── ListAndLabel
│   │   │   │   ├── ListAndLabelImport.cs
│   │   │   │   └── UnitsConverter.cs
│   │   │   ├── RDL
│   │   │   │   ├── ImportTable.cs
│   │   │   │   ├── RDLImport.cs
│   │   │   │   ├── SizeUnits.cs
│   │   │   │   └── UnitsConverter.cs
│   │   │   └── StimulSoft
│   │   │       ├── StimulSoftImport.cs
│   │   │       └── UnitsConverter.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
│   │   ├── PictureObject.cs
│   │   ├── PictureObjectBase.cs
│   │   ├── PolyLineObject.cs
│   │   ├── PolygonObject.cs
│   │   ├── Preview
│   │   │   ├── Bookmarks.cs
│   │   │   ├── Dictionary.cs
│   │   │   ├── Outline.cs
│   │   │   ├── PageCache.cs
│   │   │   ├── PreparedPage.cs
│   │   │   ├── PreparedPagePostprocessor.cs
│   │   │   ├── PreparedPages.cs
│   │   │   └── SourcePages.cs
│   │   ├── Report.cs
│   │   ├── ReportComponentBase.cs
│   │   ├── ReportComponentCollection.cs
│   │   ├── ReportEventArgs.cs
│   │   ├── ReportInfo.cs
│   │   ├── ReportPage.cs
│   │   ├── ReportSettings.cs
│   │   ├── ReportSummaryBand.cs
│   │   ├── ReportTitleBand.cs
│   │   ├── ShapeObject.cs
│   │   ├── Sort.cs
│   │   ├── SortCollection.cs
│   │   ├── Style.cs
│   │   ├── StyleBase.cs
│   │   ├── StyleCollection.cs
│   │   ├── StyleSheet.cs
│   │   ├── SubreportObject.cs
│   │   ├── Table
│   │   │   ├── TableBase.cs
│   │   │   ├── TableCell.cs
│   │   │   ├── TableCellData.cs
│   │   │   ├── TableColumn.cs
│   │   │   ├── TableColumnCollection.cs
│   │   │   ├── TableHelper.cs
│   │   │   ├── TableObject.cs
│   │   │   ├── TableResult.cs
│   │   │   ├── TableRow.cs
│   │   │   ├── TableRowCollection.cs
│   │   │   └── TableStyleCollection.cs
│   │   ├── TextObject.cs
│   │   ├── TextObjectBase.cs
│   │   ├── TextOutline.cs
│   │   ├── TypeConverters
│   │   │   ├── BarcodeConverter.cs
│   │   │   ├── ComponentRefConverter.cs
│   │   │   ├── CubeSourceConverter.cs
│   │   │   ├── DataSourceConverter.cs
│   │   │   ├── DataTypeConverter.cs
│   │   │   ├── FRExpandableObjectConverter.cs
│   │   │   ├── FillConverter.cs
│   │   │   ├── FloatCollectionConverter.cs
│   │   │   ├── FormatConverter.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.Win32.cs
│   │   │   ├── DrawUtils.cs
│   │   │   ├── Exceptions.cs
│   │   │   ├── ExportsOptions.cs
│   │   │   ├── FRCollectionBase.cs
│   │   │   ├── FRPaintEventArgs.cs
│   │   │   ├── FRPrivateFontCollection.cs
│   │   │   ├── FRRandom.cs
│   │   │   ├── FRReader.cs
│   │   │   ├── FRWriter.cs
│   │   │   ├── FastNameCreator.cs
│   │   │   ├── FastString.cs
│   │   │   ├── FileUtils.cs
│   │   │   ├── FloatCollection.cs
│   │   │   ├── GraphicCache.cs
│   │   │   ├── HtmlTextRenderer.cs
│   │   │   ├── ImageHelper.cs
│   │   │   ├── MyEncodingInfo.cs
│   │   │   ├── RegisteredObjects.cs
│   │   │   ├── Res.cs
│   │   │   ├── ResourceLoader.cs
│   │   │   ├── ScriptSecurityEventArgs.cs
│   │   │   ├── ShortProperties.cs
│   │   │   ├── TextRenderer.cs
│   │   │   ├── Units.cs
│   │   │   ├── Validator.cs
│   │   │   ├── Variant.cs
│   │   │   ├── Xml.cs
│   │   │   └── Zip.cs
│   │   ├── Watermark.cs
│   │   └── ZipCodeObject.cs
│   ├── FastReport.Core.Web
│   │   ├── Application
│   │   │   ├── Constants.cs
│   │   │   ├── DesignerSettings.cs
│   │   │   ├── ExportMenuSettings.cs
│   │   │   ├── ExportsHelper.cs
│   │   │   ├── Extensions.cs
│   │   │   ├── FastReportBuilderExtensions.cs
│   │   │   ├── FastReportGlobal.cs
│   │   │   ├── FastReportMiddleware.cs
│   │   │   ├── FastReportOptions.cs
│   │   │   ├── Localizations
│   │   │   │   ├── DocxExportSettingsLocalization.cs
│   │   │   │   ├── HtmlExportSettingsLocalization.cs
│   │   │   │   ├── ImageExportSettingsLocalization.cs
│   │   │   │   ├── OdfExportSettingsLocalization.cs
│   │   │   │   ├── PageSelectorLocalization.cs
│   │   │   │   ├── PdfExportSettingsLocalization.cs
│   │   │   │   ├── PptxExportSettingsLocalization.cs
│   │   │   │   ├── RtfExportSettingsLocalization.cs
│   │   │   │   ├── SvgExportSettingsLocalization.cs
│   │   │   │   ├── XlsxExportSettingsLocalization.cs
│   │   │   │   └── XmlExportSettingsLocalization.cs
│   │   │   ├── ReportTab.cs
│   │   │   ├── Resources.cs
│   │   │   ├── Toolbar.Localization.cs
│   │   │   ├── ToolbarSettings.cs
│   │   │   ├── WebReport.Exports.cs
│   │   │   ├── WebReport.Tabs.cs
│   │   │   ├── WebReport.cs
│   │   │   ├── WebReportCache.cs
│   │   │   ├── WebReportDesigner.cs
│   │   │   ├── WebReportHtml.cs
│   │   │   ├── WebResources.cs
│   │   │   └── WebUtils.cs
│   │   ├── Controllers
│   │   │   ├── BaseController.cs
│   │   │   ├── DesignerController.cs
│   │   │   ├── ReportController.cs
│   │   │   └── ResourceController.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
│   │   │   ├── caret-down.svg
│   │   │   ├── caret-right.svg
│   │   │   ├── close.svg
│   │   │   ├── date-picker.svg
│   │   │   ├── file.svg
│   │   │   ├── magnifier.svg
│   │   │   ├── print.svg
│   │   │   ├── reload.svg
│   │   │   ├── save.svg
│   │   │   ├── settings.svg
│   │   │   ├── slash.svg
│   │   │   ├── spinner.svg
│   │   │   └── split.min.js
│   │   └── Templates
│   │       ├── ExportSettings
│   │       │   ├── DocxExportSettings.cs
│   │       │   ├── HtmlExportSettings.cs
│   │       │   ├── ImageExportSettings.cs
│   │       │   ├── OdsExportSettings.cs
│   │       │   ├── OdtExportSettings.cs
│   │       │   ├── PdfExportSettings.cs
│   │       │   ├── PptxExportSettings.cs
│   │       │   ├── RtfExportSettings.cs
│   │       │   ├── SvgExportSettings.cs
│   │       │   ├── XlsxExportSettings.cs
│   │       │   └── XmlExportSettings.cs
│   │       ├── body.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
│   │   │   ├── 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.cs
│   │   ├── Matrix
│   │   │   └── MatrixObject.Core.cs
│   │   ├── PictureObject.Core.cs
│   │   ├── PictureObjectBase.Core.cs
│   │   ├── PolyLineObject.Core.cs
│   │   ├── Preview
│   │   │   └── PageCache.Core.cs
│   │   ├── Report.Core.cs
│   │   ├── ReportComponentBase.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
│   │   ├── Romanian.frl
│   │   ├── Russian.frl
│   │   ├── Serbian.frl
│   │   ├── Slovak.frl
│   │   ├── Slovenian.frl
│   │   ├── Spanish.frl
│   │   ├── Swedish.frl
│   │   ├── Thai.frl
│   │   ├── Turkish.frl
│   │   ├── Ukrainian.frl
│   │   └── readme.txt
│   ├── Pack
│   │   ├── BuildScripts
│   │   │   ├── CakeAPI
│   │   │   │   └── CakeAPI.cs
│   │   │   ├── Tasks
│   │   │   │   ├── BaseTasks.cs
│   │   │   │   ├── Constants.cs
│   │   │   │   ├── LocalizationPackage.cs
│   │   │   │   ├── OpenSourceTasks.cs
│   │   │   │   └── Tests.cs
│   │   │   ├── Tools
│   │   │   │   ├── DebugAttribute.cs
│   │   │   │   ├── DependsOnAttribute.cs
│   │   │   │   ├── Graph.cs
│   │   │   │   └── Startup.cs
│   │   │   └── buildScript.csproj
│   │   ├── FastReport MIT license.md
│   │   ├── FastReport.Localization
│   │   │   ├── build
│   │   │   │   └── FastReport.Localization.targets
│   │   │   ├── buildMultiTargeting
│   │   │   │   └── FastReport.Localization.targets
│   │   │   └── buildTransitive
│   │   │       └── FastReport.Localization.targets
│   │   ├── FastReport.OpenSource
│   │   │   ├── build
│   │   │   │   └── FastReport.OpenSource.props
│   │   │   ├── buildMultiTargeting
│   │   │   │   └── FastReport.OpenSource.props
│   │   │   └── buildTransitive
│   │   │       └── FastReport.OpenSource.props
│   │   └── frlogo192.png
│   ├── README.md
│   ├── SECURITY.md
│   ├── Tools
│   │   ├── FastReport.OpenSource.Documentation
│   │   │   ├── docfx.json
│   │   │   ├── favicon.ico
│   │   │   ├── index.md
│   │   │   ├── logo.png
│   │   │   └── toc.yml
│   │   └── FastReport.Tests.OpenSource
│   │       ├── BaseTests.cs
│   │       ├── Data
│   │       │   └── JsonConnectionTests.cs
│   │       ├── FastReport.OpenSource.Tests.snk
│   │       ├── FastReport.Tests.OpenSource.csproj
│   │       ├── FastReport.Tests.OpenSource.sln
│   │       ├── ReportObjectTests
│   │       │   └── TextObjectTests.cs
│   │       └── TextObjectBaseTests.cs
│   ├── UsedPackages.version
│   ├── _config.yml
│   ├── assets
│   │   ├── css
│   │   │   └── style.scss
│   │   └── images
│   │       ├── FR-open-source-bw.svg
│   │       ├── FR-open-source.svg
│   │       ├── FastReport-screenshot1.png
│   │       ├── FastReport-screenshot2.png
│   │       └── FastReport-screenshot3.png
│   ├── pack.bat
│   ├── pack.sh
│   └── publiccode.yml
└── 好例子网_FastReport-master.zip

219 directories, 1280 files


标签: FastReport Fast ST re fa

实例下载地址

FastReport 控件原码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警