C# 在 Visual Studio 2010 中设计报表的教程?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/9425122/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
A tutorial for designing reports in Visual Studio 2010?
提问by Kevin
Okay, I've done the following:
好的,我已经完成了以下操作:
- Created a blank form and added a reportviewer control to it.
- Created a dataset, bound it to a database table.
- Clicked the Smart Tag on the reportviewer to design a new report.
- Chose my dataset as the datasource for the report.
- 创建了一个空白表单并向其添加了一个报表查看器控件。
- 创建数据集,将其绑定到数据库表。
- 单击报表查看器上的智能标记以设计新报表。
- 选择我的数据集作为报告的数据源。
After I finished the above and ran the program, I had a nice little report showing on my screen. Great! However, it's pretty ugly. I want to know how to spruce it up, add charts, etc. Is there a tutorial available online that will show a user how to get the most out of the report design tool in Visual Studio 2010? Perhaps something that takes the user from the ground up designing a report?
完成上述操作并运行程序后,我的屏幕上显示了一个不错的小报告。伟大的!然而,它非常丑陋。我想知道如何修饰它、添加图表等。是否有在线教程可以向用户展示如何充分利用 Visual Studio 2010 中的报表设计工具?也许是让用户从头开始设计报告的东西?
Thanks for any advice!
感谢您的任何建议!

