微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 打印前显示打印对话框

我想在打印文档之前显示打印对话框,因此用户可以在打印前选择其他打印机.打印代码是:
private void button1_Click(object sender,EventArgs e)
        {
            try
            {
                PrintDocument pd = new PrintDocument();
                pd.PrintPage += new PrintPageEventHandler(Printimage);
                pd.Print();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message,ToString());
            }
        }
        void Printimage(object o,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(100,100);
            e.Graphics.DrawImage(img,p);
        }

这段代码能够打印当前表格吗?

解决方法

你必须使用PrintDialog
PrintDocument pd = new PrintDocument();
 pd.PrintPage += new PrintPageEventHandler(PrintPage);
 PrintDialog pdi = new PrintDialog();
 pdi.Document = pd;
 if (pdi.ShowDialog() == DialogResult.OK)
 {
     pd.Print();
 }
 else
 {
      MessageBox.Show("Print Cancelled");
 }

编辑(来自评论)

在64位Windows和某些版本的.NET上,您可能必须设置pdi.UseExDialog = true;用于显示对话框窗口.

原文地址:https://www.jb51.cc/csharp/100996.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐