如何打印TreeView?
我想打印当用户单击“打印”按钮时树视图中显示的数据 使用打印文档并在实际纸张上打印 我正在使用 Visual Studio 2008
i wanna to print the data that displayed in a treeview when the user click on Print Button
by using Print Document and print it in actual paper
i am using Visual Studio 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这些链接是否有任何帮助:
http://bytes.com /topic/c-sharp/answers/886644-printing-treeview
https://stackoverflow.com/questions/5602383/want-to-print-data-in-treeview-in-c
Try if these links are of any help:
http://bytes.com/topic/c-sharp/answers/886644-printing-treeview
https://stackoverflow.com/questions/5602383/want-to-print-data-in-treeview-in-c
在内存中创建一个TreeView,然后复制重要属性并传输根节点。之后创建一个内存位图并通过 DrawToBitmap 函数绘制 Treeview 内容,在页面上绘制图像并将根节点恢复到原始位置。
Create a in memory TreeView and then copy the significant properties and transfer a root node. After do that create a in memory bitmap and draw a Treeview content by DrawToBitmap Function, draw a image on page and restore root node to original place.