web-dev-qa-db-ja.com

印刷する前に印刷ダイアログを表示する

ドキュメントを印刷する前に印刷ダイアログボックスを表示したいので、ユーザーは印刷する前に別のプリンターを選択できます。印刷用のコードは次のとおりです。

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);
        }

このコードは現在のフォームを印刷できますか?

7
user2257581

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-bit Windowsおよび.NETの一部のバージョンでは、pdi.UseExDialog = trueを設定する必要がある場合があります。ダイアログウィンドウが表示されます。

16
KF2

完全を期すために、コードにはusingディレクティブを含める必要があります

using System.Drawing.Printing;

詳細については、 PrintDocument Class にアクセスしてください。

1
chintu