How do I set the icon of the PrintPreview() dialog? Right now it uses the default .NET icon, but I would of course like for it to use the same custom icon I use for all the other forms.
public void PrintPreview() {
PrintPreviewDialog dialog = new PrintPreviewDialog();
dialog.Document = printSettings.PrintDocument;
dialog.ShowDialog();
}
Please log in to a validated account to post comments.