0

我目前正在使用 System.Windows.Forms。PrintDialog在 ASP.net 中的自定义控件上,因为我想在单击对话框上的 Ok 按钮后显示打印对话框并将其 PrinterSettings 分配给ReportPrintDocument.PrinterSettings 。这是我的代码:

using (PrintDialog printDialog = new PrintDialog())
                {
                   if (printDialog.ShowDialog() == DialogResult.OK)
                    {
                        ReportPrintDocument rp = new ReportPrintDocument(rvPermit.ServerReport);
                        rp.PrinterSettings = printDialog.PrinterSettings;
                        rp.Print();
                    }
                }

我的问题是打印对话框总是显示在网络浏览器后面,我不知道它是否显示,直到我最小化网络浏览器。

您知道如何在 Web 表单顶部显示打印对话框吗?请帮忙。

4

1 回答 1

1

这是我现在的解决方案。(不推荐)如果你能找到另一个,请分享给我,我非常感谢你的帮助。

  1. 初始化一个新的窗体 Form currentForm = new Form();

  2. 显示表格 currentForm.Show();

  3. 激活表格 currentForm.Activate();

  4. 将其 TopMost 设置为 true,以便将表单置于顶部 currentForm.TopMost = true;

  5. 将其设置为焦点 currentForm.Focus()

  6. 设置 form.visible = false currentForm.Visible = false;

  7. 开始显示打印对话框 printDialog.ShowDialog(currentForm)

  8. 关闭新表格 currentForm.Close();

       try
            {
    
              using (PrintDialog printDialog = new PrintDialog())
                {
                    ReportPrintDocument rp = new ReportPrintDocument(rvPermit.ServerReport);
    
                    Form currentForm = new Form();
                    currentForm.Show();
                    currentForm.Activate();
                    currentForm.TopMost = true;
                    currentForm.Focus();
                    currentForm.Visible = false;
    
                if (printDialog.ShowDialog(currentForm) == DialogResult.OK)
                {
                    if (PrintReport != null)
                        PrintReport(this, e);
    
                    rp.PrinterSettings = printDialog.PrinterSettings;
                    rp.Print();
                }
    
                currentForm.Close();
            }
        }
        catch (Exception)
        {
            // Prevent any error while calling the printer dialog
        }
    
于 2014-03-05T17:03:35.020 回答