.net 在Visual Studio C++中添加ReportViewer控件

lsmd5eda  于 12个月前  发布在  .NET
关注(0)|答案(2)|浏览(156)

我使用的是Visual Studio 2022 C++。那么,如何在Visual Studio 2022 C++ Windows窗体应用程序中添加ReportViewer控件?
我确实在工具箱窗口中搜索以在Visual Studio 2022中找到ReportViewer控件,并且我确实尝试添加新项,但我找不到该工具。
最后,我找不到那个工具来将它添加到Visual C++中的窗体中。

tpgth1q7

tpgth1q71#

为您的C++项目添加Microsoft.ReportViewer.Common dll引用:右键单击您的项目->添加->引用:浏览器。然后选择nuget包-> lib文件夹中的dll。有三个dll:Microsoft.ReportViewer.Common.dll Microsoft.ReportViewer.DataVisualization.dll Microsoft.ReportViewer.ProcessingObjectModel.dll。添加引用后,保存,重新打开Visual Studio解决方案

ui7jx7zq

ui7jx7zq2#

报表查看器工具可以在C++ Linux Winform项目中使用。(CCLI需要安装在Visual Studio安装程序中)报表查看器默认不安装。您需要通过NuGet Manager安装。
经过测试,reportviewer v 2015可以在VS 2022 C
下使用.NetFramework空项目(添加Winform项)。
Microsoft.ReportViewer.Runtime.Common可以安装在C项目中。但Microsoft.ReportViewer.Winform.dll不能安装。
您需要创建一个C# .NetFramework Winform项目->安装Microsoft.ReportViewer.Winform.dll。
然后将该控件添加到C
项目的工具栏中。在工具箱中的任何位置单击鼠标右键,然后选择“选择项...”。
在.NET Framework组件上,选择浏览。
从您安装的NuGet包中选择Microsoft.ReportViewer.WinForms.dll或Microsoft.ReportViewer.WebForms.dll。Blockquote
新控件应显示在工具箱中。
x1c 0d1x的数据

相关问题