avhimkov
6/7/2016 - 5:16 AM

From http://itvdn.com/ru/blog/article/c-sharp-how-to-open-pdf-with-c-sharp

// Display the PDF file.
private void Form1_Load(object sender, EventArgs e)
{
    string filename = Application.StartupPath;
    filename = Path.GetFullPath(
        Path.Combine(filename, ".\\Test.pdf"));
    wbrPdf.Navigate(filename);
}