如何从数据集中获取要在ReportViewer中显示的数据?

时间:2016-09-01 01:32:24

标签: c# wpf dataset reportviewer windowsformhost

我在WindowsFormHost中创建了一个ReportViewer。这是我的XAML代码。

<Grid x:Name="grdPrintingGrid" Visibility="Visible" Height="440" Margin="105, 0, 0 0" VerticalAlignment="Top" Grid.ColumnSpan="2" >
        <TextBox x:Name="txtPRTTitle" IsReadOnly="True" HorizontalAlignment="Left" Height="32" Margin="10,4,0,0" VerticalAlignment="Top" Width="450" FontFamily="Arial" FontSize="18.667" Background="#FFE8F9FF" BorderThickness="0"/>
        <WindowsFormsHost x:Name="wfhFormsHost" Visibility="Hidden" HorizontalAlignment="Left" Height="312" Margin="10,54,0,0" VerticalAlignment="Top" Width="683">
            <rv:ReportViewer x:Name="rvWeeklyList" />
        </WindowsFormsHost>

        <Grid x:Name="grdPWLGrid" Visibility="Visible" Height="440" Margin="0, 0, 0 0" VerticalAlignment="Top">
            <DataGrid IsReadOnly="True" Name="dgPWLCGrid" ScrollViewer.HorizontalScrollBarVisibility="Hidden" Background="#FFE8F9FF" HorizontalAlignment="Left" VerticalAlignment="Top" Height="255" Margin="10,62,0,0" Width="693" BorderThickness="1" BorderBrush="Black" CanUserResizeRows="False" >
            </DataGrid>

            <Button x:Name="btnPWLPrint" Content="Print" HorizontalAlignment="Left" Height="26" Margin="307,388,0,0" VerticalAlignment="Top" Width="74" FontFamily="Arial" FontSize="14.667" Background="#FFEEFFFF" Click="btnPWLPrint_Click"/>
        </Grid>
    </Grid>

我在数据库中调用存储过程来获取数据。我使用报告向导来创建我的报告rdlc。我叫它PrintWeeklyList.rdlc。对于选择数据源类型,我选择了数据库。对于选择数据库模型,我选择DataSet。对于Database Object,我选择一个名为GetPrintWeeklyListData的存储过程。我给数据源命名为PrintWeeklyListDataSet。我给DataSet命名为PrintWeeklyListDS

以下是加载ReportViewer的C#代码:

private void RVWeeklyList_Load(object sender, EventArgs e)
{
        if (!isReportViewerLoaded)
        {
            ReportViewer rvWeeklyList = new ReportViewer();

            Microsoft.Reporting.WinForms.ReportDataSource reportDataSource1 =
                new Microsoft.Reporting.WinForms.ReportDataSource();

            PrintWeeklyListDataSet dataset = new PrintWeeklyListDataSet();

            dataset.BeginInit();

            reportDataSource1.Name = "PrintWeeklyListDS"; //Name of the report dataset in our .RDLC file
            reportDataSource1.Value = dataset.GetPrintWeeklyListData;
            rvWeeklyList.LocalReport.DataSources.Add(reportDataSource1);

            //rvWeeklyList.ServerReport.GetDataSources();
            rvWeeklyList.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Local;
            rvWeeklyList.LocalReport.ReportEmbeddedResource = "PrintWeeklyList.rdlc";

            dataset.EndInit();
            PrintWeeklyListDataSetTableAdapters.GetPrintWeeklyListDataTableAdapter pwlTableAdapter =
                new PrintWeeklyListDataSetTableAdapters.GetPrintWeeklyListDataTableAdapter();
            pwlTableAdapter.ClearBeforeFill = true;
            pwlTableAdapter.Fill(dataset.GetPrintWeeklyListData);


            rvWeeklyList.LocalReport.Refresh();
            rvWeeklyList.RefreshReport();


            isReportViewerLoaded = true;
        }
    }

当我单步执行代码时,我看到数据集和rvWeeklyList都有来自存储过程的数据。我一直在搜索谷歌,我无法弄清楚我缺少什么来获取数据。任何代码示例都将非常感激。

1 个答案:

答案 0 :(得分:0)

首先,将WindowsFormsHost更改为Visibility="Visible"

其次,确保PrintWeeklyList.rdlc文件的Build Action设置为Embedded Resource

现在使用下面的修订代码,并确保将子字符串<VisualStudioProjectName>替换为ReportEmbeddedResource的Visual Studio项目的名称:

public MainWindow()
{
    InitializeComponent();
    rvWeeklyList.Load += RVWeeklyList_Load;
}

private void RVWeeklyList_Load(object sender, EventArgs e)
{
    if (!isReportViewerLoaded)
    {
        Microsoft.Reporting.WinForms.ReportDataSource reportDataSource1 =
            new Microsoft.Reporting.WinForms.ReportDataSource();

        PrintWeeklyListDataSet dataset = new PrintWeeklyListDataSet();

        dataset.BeginInit();

        reportDataSource1.Name = "PrintWeeklyListDS";
        reportDataSource1.Value = dataset.GetPrintWeeklyListData;
        rvWeeklyList.LocalReport.DataSources.Add(reportDataSource1);

        rvWeeklyList.LocalReport.ReportEmbeddedResource = 
           @"<VisualStudioProjectName>.PrintWeeklyList.rdlc";

        dataset.EndInit();

        PrintWeeklyListDataSetTableAdapters.GetPrintWeeklyListDataTableAdapter pwlTableAdapter =
            new PrintWeeklyListDataSetTableAdapters.GetPrintWeeklyListDataTableAdapter();
        pwlTableAdapter.ClearBeforeFill = true;
        pwlTableAdapter.Fill(dataset.GetPrintWeeklyListData);

        rvWeeklyList.RefreshReport();

        isReportViewerLoaded = true;
    }
}

MSDN文章参考:https://msdn.microsoft.com/en-us/library/hh273267.aspx