場景 Winform中使用FastReport實現簡單的自定義PDF導出: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/100920681 在上面已經實現自定義PDF並導出的基礎上,實現導出或者列印前的預覽。 實現 在窗體中拖拽 ...
場景
Winform中使用FastReport實現簡單的自定義PDF導出:
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/100920681
在上面已經實現自定義PDF並導出的基礎上,實現導出或者列印前的預覽。
實現
在窗體中拖拽一個FastReport的PreviewControl控制項,以及Buton按鈕。
然後在Button按鈕的點擊事件中
private void button2_Click(object sender, EventArgs e) { this.report1 = new FastReport.Report(); string baseDir = System.Windows.Forms.Application.StartupPath; var reportFile = Path.Combine(baseDir, "1.frx"); this.report1.Load(reportFile); this.report1.Preview = this.previewControl1; report1.Prepare(); report1.ShowPrepared(); }
運行效果