Crystal Report は初めてで、wpf で練習しようとしていますが、レポートにデータが表示されません。
私のコードはここにあります:
<Window x:Class="CrystalReportDemo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="800" Width="900" xmlns:my="clr-namespace:SAPBusinessObjects.WPF.Viewer;assembly=SAPBusinessObjects.WPF.Viewer" Loaded="Window_Loaded">
<Grid>
<my:CrystalReportsViewer HorizontalAlignment="Left" Margin="127,73,0,0"
Name="crystalReportsViewer1" VerticalAlignment="Top" />
</Grid>
</Window>
コードビハインド:
private void Window_Loaded(object sender, RoutedEventArgs e)
{
FirstCrystalReport report = new FirstCrystalReport();
report.Load("DemoCrystalReport.rpt");
report.SetDataSource((from item in dataContext.tokens
select new
{
item.nvcraddress,
item.bgIntcontact_no,
item.dtDateOfToken,
item.vcrpan_no,
item.vcrplate_no,
item.token_id,
item.nvcrNameOfCustomer,
item.nvcrMiddleName,
item.nvcrLastName
}).ToList());
crystalReportsViewer1.ViewerCore.ReportSource = report;
}
エラーなどは表示されません。前もって感謝します。