Hi,
Any ideas how to open a PDF file in a WPF Windows Application?
|
4
|
|||
|
|
|
Oops. this is for a winforms app. Not for WPF. I will post this anyway. try this
|
||
|
|
|
|
You can get the Acrobat Reader control working in a WPF app by using the WindowsFormHost control. I have a blog post about it here: http://hugeonion.com/2009/04/06/displaying-a-pdf-file-within-a-wpf-application/ I also have a 5 minute screencast of how I made it here: |
||
|
|
|
|
You could simply host a Web Browser control on the form and use it to open the PDF. There's a new native WPF "WebBrowser" control in .NET 3.51, or you could host the Windows.Forms browser in your WPF app. |
||
|
|
|
|
Do you want to display the PDF in WPF? |
||
|
|
|
|
I am using the following code to run the browser but the Browser.Navigate method does not do anything!
|
||
|
|
|
|
Ohh by the way the PDF is located on a client's computer. |
||
|
|
|
|
Tried the following code but nothing happens:
|
||
|
|
|
|
Nopes noting is happening:
|
||
|
|
|
|
I got it working using the WinForms but not WPF. I guess I will fire away the WinForm from the WPF and use the Adobe Reader Control to read the PDF. |
||
|
|
|
|
Following expects Adobe Reader to be installed. And the Pdf extension to be connected to this. It simply runs it.
Greetings, Eric Gehring, www.softex.nl |
||
|
|
|
|
This works great!!! Thanks! Now all I need to do is figure out how to load the file from a SQL Database! Any ideas? |
||
|
|
|
|
Check this out: http://itextsharp.sourceforge.net/ You may have to use a WindowsFormsHost, but since it is open source, you might be able to make it a little more elegant in WPF. |
||
|
|