我在WPF中使用rdlc報告,所以使用WindowsFormsHost包裝器來完成。我正在查找的rdlc報告中嵌入了一個子報表,我使用ReportViewer的SubreportProcessing事件設置了該報表的數據源。SubreportProcessing Event not Firing
Viewer.LocalReport.SubreportProcessing += new SubreportProcessingEventHandler(LoadAccessoriesSubReport);
我的問題是SubreportProcessing事件甚至沒有被解僱。我定義它在Window_Loaded
事件,包含嵌入ReportViewer控件WPF窗口的,請參見下面的XAML:
Title="ReportViewer" Height="1000" Loaded="Window_Loaded" Width="1000">
<Grid>
<WindowsFormsHost Name="winHost">
<wf:ReportViewer Dock="Fill" Name="rptViewer">
</wf:ReportViewer>
</WindowsFormsHost>
</Grid>
將不勝感激任何幫助。
我有同樣的問題。我還沒有找到解決方案...... – jbandi 2010-01-18 12:06:33
雖然不是直接的問題,但有問題的細節回答了我的問題。謝謝! +1 – 2010-06-02 19:23:04