Hi John,
On further analyzation, we suspect that this issue might have occurred due to defined size given for the PdfDocumentView control. So, this might have not changed the PdfDocumentView size based on the window size. In this case, the size should not be defined for the PdfDocumentView, instead apply Dock value as fill to achieve your requirement. Please find the code snippet for the same from below,
pdfDocumentView.Load(@"../../Data/Barcode.pdf");
pdfDocumentView.Dock = DockStyle.Fill; |
Also, we have created a sample for the same and that can be downloaded from the below location,
Regards,
Aravindh Sathiyamoorthy.