PDF View in c# without toolbar nor any hindrances?
I have a windows form developed in Visual C# that displays the content of a PDF file with a reference to AxAcroPDFLib, but my boss doesn't want to see any toolbar nor side menus as shown in my image below here. Here's what I have coded in my attempts to make this work but it doesn't seem to matter:
axAcroPDF1.src = tmpTicketPdfPreviewPath;
axAcroPDF1.setShowToolbar(false);
axAcroPDF1.setView("FitH");
axAcroPDF1.setLayoutMode("SinglePage");
axAcroPDF1.setPageMode("none");
axAcroPDF1.Show();
Please let me know if I'm missing anything here. If not possible, I'm willing to look into other 3rd party vendors such as iTextSharp of SumatraPDF if possible. Please advise, thanks.

