Hello,
we've upgraded to VS2022 and .NET 7.
The reports are giving us a lot of problems, it looks like we have too rebuild them in the Standalone Report Designer. Import fails
The default Telerik WPF ReportViewer has this
<tr:ReportViewer Grid.Row="0" x:Name="ReportViewer1" HorizontalAlignment="Stretch" EnableAccessibility="true">
<tr:ReportViewer.ReportSource>
<telerikReporting:UriReportSource Uri=""/>
</tr:ReportViewer.ReportSource>
</tr:ReportViewer>
Can we change the Uri programmatically in a MVVM project? Something like
<tr:ReportViewer Grid.Row="0" x:Name="ReportViewer1" HorizontalAlignment="Stretch" EnableAccessibility="true">
<tr:ReportViewer.ReportSource>
<telerikReporting:UriReportSource Uri="{Binding ReportSource}"/>
</tr:ReportViewer.ReportSource>
</tr:ReportViewer>
where reportsource is ExampleReport.trdp
Jeroen