C# Winform在表單上開啟PDF檔案進行查看

來源:互聯網
上載者:User

標籤:c#   ffffff   檔案   expr   one   filename   doc   exp   viewer   

方法一:

使用的是Adobe PDF Reader控制項,之前一直不知道怎麼找到對應的AxInterop.AcroPDFLib.dll跟Interop.AcroPDFLib.dll這兩個組件,沒有轉過頭,後來猛然想到直接從控制項堆裡面拖過來就能找到了。。。
找到這兩個組件所在位置,把它們拷貝到項目目錄下重新引用,在需要用的時候重新執行個體化一個控制項就行了。
注意的地方:

具體代碼:
AxAcroPDFLib.AxAcroPDF acroPDF = new AxAcroPDFLib.AxAcroPDF();
((System.ComponentModel.ISupportInitialize)(acroPDF)).BeginInit();
acroPDF.Location = new Point(0, 24);
acroPDF.Size = new Size(300, 300);
acroPDF.Dock = DockStyle.Fill;
uiPanel0Container.Controls.Add(acroPDF);
((System.ComponentModel.ISupportInitialize)(acroPDF)).EndInit();
acroPDF.LoadFile(_fileName);
一定要對控制項進行初始化,不然會出錯
今天弄了很久,還看了很多相關的組件,比如itextsharp.dll、acropdf.dll等

方法二:

DevExpress控制項中的pdfViewer控制項,可直接loadFile();

C# Winform在表單上開啟PDF檔案進行查看

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.