Is it possible to change the icon in the preview window when using the grid.PrintPreview method?
Hello,
You could try a code like the following in order to achieve this:
private void ultraGrid1_InitializePrintPreview(object sender, Infragistics.Win.UltraWinGrid.CancelablePrintPreviewEventArgs e) { e.PrintPreviewSettings.DialogIcon = new Icon("..//..//Globe.ico"); }
private void ultraGrid1_InitializePrintPreview(object sender, Infragistics.Win.UltraWinGrid.CancelablePrintPreviewEventArgs e)
{
e.PrintPreviewSettings.DialogIcon = new Icon("..//..//Globe.ico");
}
Please do not hesitate to contact us if you need any additional assistance.