我正在尝试自动打印一系列Windows窗体。我不需要展示它们。我在互联网上找到的代码示例仅在我使用passArray(scorep1)
显示表单时才有效!我需要用数据初始化表单并将其发送到打印机这是我正在使用的代码:
show()
我从for循环中的另一个类调用public partial class Form2_withoutShow : Form{
PrintDocument PrintDoc;
Bitmap memImage;
public Form2_withoutShow (Data data)
{
InitializeComponent();
/*
Initialize Data (texboxes, charts ect.) here
*/
this.PrintDoc = new PrintDocument();
this.PrintDoc.PrintPage += PrintDoc_PrintPage;
this.PrintDoc.DefaultPageSettings.Landscape = true;
}
public void Print()
{
this.PrintDoc.Print();
}
void PrintDoc_PrintPage(object sender, PrintPageEventArgs e)
{
int x = SystemInformation.WorkingArea.X;
int y = SystemInformation.WorkingArea.Y;
int width = this.Width;
int height = this.Height;
Rectangle bounds = new Rectangle(x, y, width, height);
Bitmap img = new Bitmap(width, height);
this.DrawToBitmap(img, bounds);
Point p = new Point(10, 10);
e.Graphics.DrawImage(img, p);
}
private void Form2_withoutShow_Load(object sender, EventArgs e)
{
// remove TITLEBar
this.ControlBox = false;
this.Text = String.Empty;
}
}
方法,并通过构造函数传递要初始化的数据。
MSDN example捕获屏幕上应显示表单的部分。这对我不起作用。如果我不打电话给Print()
,我现在使用的方法只会产生空窗口的打印。如何在不调用show()
方法的情况下将数据输入表单?在显示窗口时模仿窗口等方法,也不起作用,因为这也是打印结果:最小化的窗口。
答案 0 :(得分:6)
在显示表单之前,表单及其控件不在Created
状态。要强制创建表单及其控件,它足以调用表单的内部CreateControl(bool fIgnoreVisible)
方法:
var f = new Form1();
var createControl = f.GetType().GetMethod("CreateControl",
BindingFlags.Instance | BindingFlags.NonPublic);
createControl.Invoke(f, new object[] { true });
var bm = new Bitmap(f.Width, f.Height);
f.DrawToBitmap(bm, new Rectangle(0, 0, bm.Width, bm.Height));
bm.Save(@"d:\bm.bmp");
同时删除表单Load
事件处理程序中的代码,并将它们放在表单的构造函数中。
注意
此问题还有其他解决方法:
Location
设置为(-32000, -32000)
并将StartPosition
设置为Manual
,然后将Show
和Hide
设置为表单。Opacity
设置为0
,然后Show
和Hide
表单。