我想在wpf浏览器应用程序中使用crystal report。我在refenrence中添加了以下dll:
**SapBusinessObjects.WPf.Viewer
SapBusinessObjects.WPf.ViewerShared**
xaml文件是这样的:
<UserControl x:Class="Report_UC"
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:my="clr-namespace:SAPBusinessObjects.WPF.Viewer;assembly=SAPBusinessObjects.WPF.Viewer"
mc:Ignorable="d"
d:DesignHeight="800" d:DesignWidth="800">
<Grid>
<my:CrystalReportsViewer Name="report"></my:CrystalReportsViewer>
</Grid>
</UserControl>
我添加此行以使用crystal report viewer:
xmlns:my="clr-namespace:SAPBusinessObjects.WPF.Viewer;assembly=SAPBusinessObjects.WPF.Viewer"
但是当我按F5运行应用程序时,会出现此错误:
The tag 'CrystalReportsViewer' does not exist in XML namespace 'clr-namespace:SAPBusinessObjects.WPF.Viewer;assembly=SAPBusinessObjects.WPF.Viewer'
问题出在哪里?我被困在这里直到有一天。天啊 ! 请帮帮我 不知道如何使用水晶报告??????
答案 0 :(得分:1)
试试这个:
右键单击项目,单击“属性”。
将目标框架 .NET Framework 4客户端配置文件更改为 .NET Framework 4 。
最有可能这可能有效