我一次又一次地尝试将ReportViewer控件添加到工具箱中。
我不知道如何解决这个问题。
由于
答案 0 :(得分:2)
您需要修改Visual Studio:
在此之后,您可以在Visual Studio中看到ReportViewer。
答案 1 :(得分:1)
如果您已经管理并执行了以下步骤:
打开控制面板>节目>程序和功能,并选择您的Microsoft Visual Studio 2015版本的条目。在我们的示例中,它是Microsoft Visual Studio Enterprise 2015。 点击"更改"程序列表上方顶部栏上的按钮。 启动画面后,将打开一个窗口。按"修改"按钮。 选择Windows和Web开发> Microsoft SQL Server数据工具,然后选中它旁边的复选框。 按"更新"窗口右下角的按钮。 安装完成后,打开您的Visual Studio版本。加载新的.dll文件后,应重新实现报告功能,并且您应该能够访问所有相关的表单,控件和对象。
如果您已安装:
Microsoft.ReportViewer.VS2015.WebForms 3 Microsoft.ReportViewer.2015.Runtime
Microsof report viewer 2015(来自Manage Nuget Packeges for Solution或在此处获取 https://www.microsoft.com/en-us/download/details.aspx?id=45496)
并且您无法创建报告,请尝试以下步骤:
启动Visual Studio。在表单设计模式下,转到控件工具箱并右键单击它。 选择"选择项目..."
之后>点击浏览并选择
中的元素C:\的Windows \组件\ GAC_MSIL \ Microsoft.ReportViewer.Common \ 12.0.0.0__89845dcd8080cc91
答案 2 :(得分:0)
我不认为VS 2015与控件捆绑在一起。在这里https://www.microsoft.com/en-us/download/details.aspx?id=45496
答案 3 :(得分:0)
答案 4 :(得分:0)
它在2015年的visual studio中对我有用。右键点击解决方案资源管理器&选择Manage NuGet packages for solution并搜索Microsoft.ReportViewer.WinForms.VS2015.WinForms并安装它。安装后在.xaml页面中添加命名空间xmlns:rv =“clr-namespace:Microsoft.Reporting.WinForms; assembly = Microsoft.ReportViewer.WinForms”。拖拽将WindowsFormsHost控件拖放到.xaml页面上。并在.xaml页面中添加以下内容
<Grid>
<WindowsFormsHost>
<rv:ReportViewer x:Name="_reportViewer"/>
</WindowsFormsHost>
</Grid>