Как получить данные из набора данных для отображения в ReportViewer?
Я создал ReportViewer в WindowsFormHost. Вот мой код 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. Для объекта базы данных я выбираю хранимую процедуру с именем GetPrintWeeklyListData
, Я дал Источнику данных имя PrintWeeklyListDataSet
, Я дал DataSet имя PrintWeeklyListDS
,
Вот мой код C# для загрузки ReportViewer:
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 содержатся данные из хранимой процедуры. Я искал в Google, и я не могу понять, что мне не хватает, чтобы получить данные для показа. Любые примеры кода будут с благодарностью.
1 ответ
Во-первых, изменить WindowsFormsHost
в Visibility="Visible"
Во-вторых, убедитесь, что PrintWeeklyList.rdlc
файла Build Action
установлен в Embedded Resource
Теперь используйте исправленный код ниже и обязательно замените подстроку<VisualStudioProjectName>
с именем вашего проекта Visual Studio для ReportEmbeddedResource
:
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