How to show pdf in windows form and add annotation.
Hi Jason,
To view PDF in Windows Forms application, you could convert its pages to images and display them using PictureBox
control. See the conversion example:
Or you could use WPF controls inside your Windows Forms application.
Here is how to display PDF file using DocumentViewer
control and using Image
control:
Both of these approaches are also showcased in our printing examples as a way to create a print preview:
I hope this helps.
Regards,
Mario