我正在尝试创建一个打印listview项目和一些图片的应用程序。在第一个表单中,我填写了列表视图,当我按下预览按钮时,它会打开表单 2 并打印我的列表视图和其他内容。private void Form1_Load(object sender, EventArgs e){ System.Drawing.Image img = System.Drawing.Image.FromFile("C:\\assda.jpg"); Point loc = new Point(100, 100); d.Graphics.DrawImage(img, new Rectangle(10, 20, 195, 100), new Rectangle(0, 0, img.Width, img.Height), GraphicsUnit.Pixel); d.Graphics.DrawString("xxxxx", new Font("Times New Romans", 14, FontStyle.Bold), Brushes.Black, new PointF(350, 60)); }我必须添加PrintPageEventArgs d但是当我这样添加时:private void Form1_Load(object sender, EventArgs e, PrintPageEventArgs d)我收到以下错误:No overload for 'Form1_Load' matches delegate 'System.EventHandler'它显示了 Form1.Designer.cs 中的错误:this.Load += new System.EventHandler(this.Form1_Load);
1 回答
- 1 回答
- 0 关注
- 216 浏览
添加回答
举报
0/150
提交
取消