C# WinForm打开PDF文件并在窗体中显示
1.添加引用
工具箱---右键---选择项--COM组件--AdobePDFReader
2.使用方法
OpenFileDialogopenFile=newOpenFileDialog(); open..Filter="PDF文件|*.pdf"; openFile.ShowDialog(); axAcroPDF1.src=openFile.FileName; //axAcroPDF1.LoadFile(of.FileName); //使用方法二
除了这种方法,网上还有一些开源的项目,可以直接打开PDF文件,大家也可以参考下
http://www.codeproject.com/KB/silverlight/BlendPDFwithSilverlight.aspx
http://www.codeproject.com/KB/applications/PDFViewerControl.aspx