0

再一次,我在使用 .NET 的 PDFium 控件时遇到了问题。

// From the Load of the Win-Form
PdfCommon.Initialize();

pdfView1 = new Controls.PdfView();
pdfView1.LoadDocument(Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "\Special.pdf");

pdfView1.Name = "pdfView1";

pdfView1.Location = new Point(0, 0);

pdfView1.Height = this.Height;
pdfView1.Width = this.Width;

pdfView1.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;

pdfView1.SizeMode = Patagames.Pdf.Net.Controls.SizeModes.FitToSize;

this.Controls.Add(pdfView1);

名为“Special.pdf”的 PDF 正在加载到 pdfView1 中,但它只显示 1 (!) 页。本文档包含 3 页。

滚动浏览所有其他页面时没有可见的滚动条。它只显示第一页。

如果有可用的滚动条,我不知道我必须使用哪种方法来激活滚动条。

4

1 回答 1

1

Just change the current page

pdfView1.CurrentPage = 2; //3, 4 and so on.

This control does not contain toolbar or somthing like this. but u can call many functions from ur code.

But I recommend to use PdfViewer control instead PdfView. It's more powerful.

于 2015-05-08T14:35:14.260 回答