Какое событие используется для предварительного просмотра печатного документа вместо печати ?
Which event used to preview print document instead of print ? I need to preview data not print so what event used for preview or load printdocument without print
Что я уже пробовал:
под кнопкой
private void button1_Click(object sender, EventArgs e) { PrintDocument document = new PrintDocument(); PrintController printController = new StandardPrintController(); document.PrintController = printController; // what event used here for preview data not print PrintPreviewDialog ppDialog = new PrintPreviewDialog(); ((ToolStripButton)((ToolStrip)ppDialog.Controls[1]).Items[0]).Enabled = false; ppDialog.Document = document; ppDialog.Show(); }
private void printDocument_PrintPage(object sender, PrintPageEventArgs e) { some code display grid }