本文介绍了如何打印可滚动的用户控件表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个用户控制页面,我有一些图表和标签。我想要打印整个可滚动页面。



我尝试过:



我用过:

I have one user control page and i have some charts and labels on it. I want to print the whole scrollable page.

What I have tried:

I used :

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

       PrintForm1.Print(Me, PowerPacks.Printing.PrintForm.PrintOption.Scrollable)
   End Sub





但我收到的错误为

类型'userctrl'的值无法转换为'System.Windows.Forms.Form'。



but i got the error as
"value of type 'userctrl' cannot be converted to 'System.Windows.Forms.Form'".

推荐答案


这篇关于如何打印可滚动的用户控件表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-14 04:24