欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在 WPF 应用程序中使用 ReportViewer

程序员文章站 2022-03-01 13:04:35
...

要在 WPF 应用程序中使用 ReportViewer 控件,您需要将 ReportViewer 程序集添加到项目并以编程方式对其进行配置。 WPF 支持 Windows 窗体控件,但 ReportViewer 控件没有为 WPF 提供任何自动配置(而在 Windows 窗体应用程序中提供了此功能)。
在 WPF 应用程序中,ReportViewer 控件承载在 WindowsFormsHost 控件之中。 WindowsFormsHost 控件要求对调用代码的完全信任,这是 WPF 客户端应用程序在 Windows 中的信任级别。
1、在“添加引用”对话框中的“.NET”选项卡下,选择“Microsoft.ReportViewer.WinForms”程序集,然后单击“确定”。
2、XAML(这将在 XAML 页面上创建名为 _reportViewer 的 ReportViewer 实例。):

<Window x:Class="WpfReportApplication.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:rv="clr-namespace:Microsoft.Reporting.WinForms;assembly=Microsoft.ReportViewer.WinForms" 
        Title="MainWindow" Height="350" Width="525">
    <Grid>
      <WindowsFormsHost> 
        <rv:ReportViewer x:Name="_reportViewer"/> 
      </WindowsFormsHost>
    </Grid>
</Window>

参考学习:演练:在 WPF 应用程序中使用 ReportViewer

相关标签: WPF