Downloads – PDFsharp & MigraDoc
http://www.pdfsharp.net/Default.aspx?Page=Downloads&NS=&AspxAutoDetectCookieSupport=1
pdfsharp – Release: PDFsharp and MigraDoc Foundation 1.31
http://pdfsharp.codeplex.com/releases/view/37054
Koders Code Search: PdfAcroViewer2.cs – C#
http://www.koders.com/csharp/fidCD86715AF5A8837AD6E8107E1E921473A76B3E37.aspx?s=pdf+setviewscroll#L2
Koders Code Search: PdfAcroViewer.cs – C#
http://www.koders.com/csharp/fid676277BC92E7109282E63460A3F76F9AA03D3867.aspx?s=pdf+setviewscroll#L1
.NET Hook Library
http://dotnethook.sourceforge.net/
.net PDF Viewer Component – GameDev.Net Discussion Forums
http://www.gamedev.net/community/forums/topic.asp?topic_id=462167
.net PDF Viewer Component – GameDev.Net Discussion Forums
http://74.125.153.132/search?q=cache:rPP2-pvu1MgJ:www.gamedev.net/community/forums/topic.asp%3Ftopic_id%3D462167+pdf+setviewscroll+fith&cd=2&hl=en&ct=clnk
用户自定义PDF浏览控件(无需Acrobat Reader安装)_.Net视角_CS程序员之窗
http://www.csharpwin.com/dotnetresource/10079r7616.shtml
View PDF files in C# using the Xpdf library.
http://www.serialcoder.net/technews/View+PDF+files+in+C23+using+the+Xpdf+library.aspx
View PDF files in C# using the Xpdf library. – 123aspx.com ASP.NET Resource Directory
http://www.123aspx.com/ReadReviews.aspx?res=37910
View PDF files in C# using the Xpdf and muPDF library, Print PostScript. – CodeProject
http://www.codeproject.com/KB/files/xpdf_csharp.aspx
OpenFileDialog dlg = new OpenFileDialog(); dlg.Filter = “Portable Document Format (*.pdf)|*.pdf”; if (dlg.ShowDialog() == DialogResult.OK) { _pdfDoc = new PDFLibNet.PDFWrapper(); _pdfDoc.LoadPDF(dlg.FileName); _pdfDoc.CurrentPage = 1; PictureBox pic =new PictureBox(); pic.Width=800; pic.Height=1024; _pdfDoc.FitToWidth(pic.Handle); pic.Height = _pdfDoc.PageHeight; _pdfDoc.RenderPage(pic.Handle); Bitmap _backbuffer = new Bitmap(_pdfDoc.PageWidth, _pdfDoc.PageHeight); using (Graphics g = Graphics.FromImage(_backbuffer)) { _pdfDoc.RenderHDC(g.GetHdc); g.ReleaseHdc(); } pic.Image = _backbuffer; }
历史博文
- 20080726 WinXP Embedded wpf - 2009
- 20070703 嵌入式 Python cross compile err - 2008
- 1007 秋天不回来 - 2007
- 0121 ifelse 面向对象 设计模式 - 2006
- C#编程发送邮件SMTP客户端程序 - 2005