Winform将FastReport的report与PreviewControl建立绑定关系

场景

FastReport安装包下载、安装、去除使用限制以及工具箱中添加控件:

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/100893794

Winform中使用FastReport实现简单的自定义PDF导出:

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/100920681

如下点击按钮时将report控件的预览在指定的预览控件中显示,即建绑定关系。

实现

在Button的点击事件中

this.report1.Preview = this.previewControl1;  
原文地址:https://www.cnblogs.com/badaoliumangqizhi/p/11535133.html