Hi,
When the print preview is generated for my app, the logo is not loaded.
When I save the print as a PDF (using 'Microsoft Print to PDF'), the logo is there.
When I close the preview, and click the print button again, the logo is loaded in the preview (and also in the PDF).
Here's part of my code:
BitmapImage logoBitmap = new BitmapImage(new Uri("ms-appx:///Assets/Images/logo.png"));
Image companyLogoImage = new Image()
{
Width = 300,
HorizontalAlignment = HorizontalAlignment.Left,
VerticalAlignment = VerticalAlignment.Top,
Source = logoBitmap
};
It's not that big of a deal for me as the logo is included in the export (I haven't printed it, but I assume it might print with the logo), but the user will not like it as they expect an actual print preview!
Any help is appreciated.