PDF库
其实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
欢迎C#或Winform技术交流,C#交流群:83868794