作者:啊明的小蝴蝶_522 | 来源:互联网 | 2023-09-25 13:56
第一种使用微软官方的方法
缺点:电脑 必须需要安装软件(Adobe Reader 下载),否则无法使用
优点:功能多,字体比较清晰
第一步:工具箱==》选择箱==》Com组件==》勾选Adobe PDF Reader
第二步:拖一个Adobe PDF Reader控件到窗体上,双击窗体,在窗体加载时Form1_Load,弹出对话框,加载PDF文件 ,代码如下:
private void Form1_Load(object sender, EventArgs e) { string fileName = MyOpenFileDialog(); axAcroPDF1.LoadFile(fileName); }string MyOpenFileDialog(){OpenFileDialog ofd = new OpenFileDialog();ofd.Filter = "PDF文档(*.pdf)|*.pdf";if (ofd.ShowDialog() == DialogResult.OK){return ofd.FileName;}else{return null;}}
第二种方法:引用:O2S.Components.PDFRender4NET O2S.Components.PDFView4NET
优点:不用安装东西,到哪里都可用
缺点:功能少,只能显示使用
代码:
public PDFDocument PdfDocument;public PDFPageView PdfPageView;private void Form1_Load(object sender, EventArgs e) { try{PdfDocument = this.pdfDocument1;PdfPageView = this.pdfPageView1;PdfPageView.Document = PdfDocument; //把视图和document关联起来//string file = fileName;string file = @".pdf";//文件名PdfDocument.Load(file);this.pdfPageView1.PageDisplayLayout = PDFPageDisplayLayout.OneColumn;}catch (Exception ex){MessageBox.Show(ex.Message);}}