您好我一直在尝试获取当前在查看器axAcroPDF中显示的页面的页面编号。 这个论坛上有一个帖子有同样的问题,但这似乎是VB代码。
我希望有人可以帮助我:
private void button1_Click(object sender, EventArgs e)
{
openFileDialog1.AddExtension = true;
openFileDialog1.Filter = "PDF Files | *.pdf";
openFileDialog1.Title = "Kies een bestand";
try
{
openFileDialog1.ShowDialog();
filename = openFileDialog1.FileName;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
throw;
}
axAcroPDF1.setShowToolbar(false);
axAcroPDF1.LoadFile(filename);
axAcroPDF1.setShowScrollbars(false);
axAcroPDF1.Show();
}