转载:https://blog.csdn.net/wenjunsu/article/details/5870661
其实WinForm打开PDF文件 有很多种方法 主要分为2个大的方法
一:使用Adobe reader提供的COM组件
1.添加引用
工具箱—右键—选择项–COM组件–Adobe PDF Reader
2.使用方法
OpenFileDialog openFile=new OpenFileDialog();
open..Filter = "PDF文件|*.pdf";
openFile.ShowDialog();
axAcroPDF1.src = openFile.FileName;
//axAcroPDF1.LoadFile(of.FileName); //使用方法二
二:不使用Adobe reader提供的COM组件
http://www.codeproject.com/KB/silverlight/BlendPDFwithSilverlight.aspx
http://www.codeproject.com/KB/applications/PDFViewerControl.aspx