WPF中使用ReportViewer报表

简介: 原文:WPF中使用ReportViewer报表本篇博客将介绍如何在WPF中使用ReportViewer控件。 1. 环境准备:下载安装最新版ReportViewer(PS:需要安装Microsoft SQL Server System CLR Types package);如果您的开发工具是Visual Studio 2015,记得安装Microsoft SQL Server Tools,因为需要安装ReportViewer报表设计器。
原文: WPF中使用ReportViewer报表

本篇博客将介绍如何在WPF中使用ReportViewer控件。

1. 环境准备:下载安装最新版ReportViewer(PS:需要安装Microsoft SQL Server System CLR Types package);如果您的开发工具是Visual Studio 2015,记得安装Microsoft SQL Server Tools,因为需要安装ReportViewer报表设计器。

2. 下面我们通过一个例子(示例图书品种报表)来演示,

1). 新建一个WPF项目WPFBooksReport,

2). 添加Entities文件夹,并添加Book类,

    public class Book
    {
        public string Name { get; set; }

        public string Author { get; set; }

        public string ISBN { get; set; }

        public decimal Price { get; set; }
    }

3). 添加名称为BookReport的RDLC报表,

报表设计器主界面

修改报表属性:

4. 新建DataSet,名称BookDataSet,然后新建DataSource,DataSource的数据来源于Object,因为在示例程序中为了降低复杂度,直接使用Book类作为数据来源了。

这样,RDLC报表的数据源便设置成功了。下一步设计报表的样子。

5). 在报表中插入一个Table,然后设置数据源,

6). 新建WPF UserControl,BookReportCtrl.xaml,在项目中添加Microsoft.ReportViewer.WinForms和WindowsFormsIntegration引用

BookReportCtrl.xaml

<UserControl x:Class="WPFBooksReport.BookReportCtrl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:rv="clr-namespace:Microsoft.Reporting.WinForms;assembly=Microsoft.ReportViewer.WinForms"
             xmlns:local="clr-namespace:WPFBooksReport"
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
        <WindowsFormsHost>
            <rv:ReportViewer x:Name="bookReportViewer"/>
        </WindowsFormsHost>
        <local:MaskLayer x:Name="maskLayer" Visibility="Collapsed"/>
    </Grid>
</UserControl>

Code:

        public BookReportCtrl()
        {
            InitializeComponent();

            this.Loaded += BookReportCtrl_Loaded;

            this.bookReportViewer.RenderingComplete += BookReportViewer_RenderingComplete;
        }

        private void BookReportCtrl_Loaded(object sender, RoutedEventArgs e)
        {
            maskLayer.Visibility = Visibility.Visible;

            // 模拟一个DataTable

            DataTable dt = new DataTable();
            dt.Columns.Add("Name", typeof(string));
            dt.Columns.Add("Author", typeof(string));
            dt.Columns.Add("Price", typeof(decimal));
            dt.Columns.Add("ISBN", typeof(string));

            DataRow dr = dt.NewRow();
            dr["Name"] = "C# In Depth";
            dr["Author"] = "Jon Skeet";
            dr["Price"] = 72.0m;
            dr["ISBN"] = "B3456123";

            dt.Rows.Add(dr);

            ReportDataSource reportDataSource = new ReportDataSource();
            
            reportDataSource.Name = "BookDataSet";
            reportDataSource.Value = dt;

            bookReportViewer.LocalReport.ReportPath = Directory.GetCurrentDirectory() + "\\BookReport.rdlc";
            bookReportViewer.LocalReport.DataSources.Add(reportDataSource);

            bookReportViewer.RefreshReport();
        }

        private void BookReportViewer_RenderingComplete(object sender, Microsoft.Reporting.WinForms.RenderingCompleteEventArgs e)
        {
            maskLayer.Visibility = Visibility.Collapsed;
        }

6. 新建BookReportWindow.xaml来承载报表。

7. 运行程序,

到这里,这个示例程序就完成了。

代码点击这里下载。

感谢您的阅读。

目录
相关文章
WPF ComboBox 数据模板
WPF中的控件,有不少都是需要绑定数据的,例如ComboBox控件可以绑定数据,从下拉列表中进行选择。默认情况下,ComboBox控件绑定的数据从显示上比较单一,只能显示固定的文本信息。而为了更好的突出数据展现效果,这里需要使用到WPF中的另一种强大的功能,即数据模板(DataTemplate )
1225 0
WPF ComboBox 数据模板
|
C# 开发工具 Windows
WindowsXamlHost:在 WPF 中使用 UWP 控件库中的控件
原文 WindowsXamlHost:在 WPF 中使用 UWP 控件库中的控件 在 WindowsXamlHost:在 WPF 中使用 UWP 的控件(Windows Community Toolkit) 一文中,我们说到了在 WPF 中引入简单的 UWP 控件以及相关的注意事项。
1474 0
|
C#
WPF 4 DataGrid 控件(基本功能篇)
原文:WPF 4 DataGrid 控件(基本功能篇)      提到DataGrid 不管是网页还是应用程序开发都会频繁使用。通过它我们可以灵活的在行与列间显示各种数据。本篇将详细介绍WPF 4 中DataGrid 的相关功能。
1560 0
|
C# 容器
在WPF中使用WinForm控件方法
原文:在WPF中使用WinForm控件方法 1、      首先添加对如下两个dll文件的引用:WindowsFormsIntegration.dll,System.Windows.Forms.dll。
1251 0
WPF窗体的黑底原因分析
WPF窗体有时候出现一个莫名黑底,如图: 而窗体设计中是看不出黑底的。 查看属性才知道是Background的问题: 将Background设置颜色: 问题OK。
926 0
|
C# 前端开发
Silverlight及WPF中实现自定义BusyIndicator
  在开发Silverlight或者WPF项目时,当我们调用Web服务来加载一些数据时,由于数据量比较大需要较长的时间,需要用户等待,为了给用户友好的提示和避免用户在加载数据过程中进行重复操作,我们通常使用BusyIndicator这个控件来锁定当前页面。
1010 0