C# WinForm打开PDF文件

转载: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

    原文作者:LifeOases
    原文地址: https://blog.csdn.net/qq_43026206/article/details/96327575
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞