本文介绍了在WPF应用程序中显示PDF的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有什么想法如何在WPF Windows应用程序中显示PDF文件?
Any ideas how to display a PDF file in a WPF Windows Application?
我正在使用以下代码运行浏览器,但是Browser.Navigate
方法没有任何作用!
I am using the following code to run the browser but the Browser.Navigate
method does not do anything!
WebBrowser browser = new WebBrowser();
browser.Navigate("http://www.google.com");
this.AddChild(browser); // this is the System.Windows.Window
推荐答案
糟糕.这是用于winforms应用程序.不适用于WPF.无论如何,我都会发布.
Oops. this is for a winforms app. Not for WPF. I will post this anyway.
尝试
private AxAcroPDFLib.AxAcroPDF axAcroPDF1;
this.axAcroPDF1 = new AxAcroPDFLib.AxAcroPDF();
this.axAcroPDF1.Dock = System.Windows.Forms.DockStyle.Fill;
this.axAcroPDF1.Enabled = true;
this.axAcroPDF1.Name = "axAcroPDF1";
this.axAcroPDF1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAcroPDF1.OcxState")));
axAcroPDF1.LoadFile(DownloadedFullFileName);
axAcroPDF1.Visible = true;
这篇关于在WPF应用程序中显示PDF的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!