在 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>
推荐阅读
-
Word2000和Word2002中的宏在Office Word 2003中的使用
-
在Word2010中使用“撤销键入”或“恢复键入”功能
-
在MySQL中自定义参数的使用详解
-
clipboard在vue中的使用的方法示例
-
Winform中在使用Dock属性设计页面布局控件的顺序导致页面效果不同的问题
-
FluentValidation在C# WPF中的应用
-
Linux中在不破坏磁盘的情况下使用dd命令
-
使用Python在Excel中嵌入附件(txt文件,zip压缩包)对象
-
[sonarqube的使用] sonarlint在idea&eclipse中安装与使用
-
在Android Studio中Parcelable插件的简单使用教程