在AxAcroPDF中隐藏pdf的工具栏

时间:2015-02-17 10:02:32

标签: c# .net axacropdf

您好我正在使用C#显示pdf文档。我只是想显示pdf文档而不显示工具栏。请回答任何人。这是我的代码

        axAcroPDF1.setShowToolbar(false);
        this.axAcroPDF1.LoadFile(@"C:\Users\Chinna\Desktop\Sample.pdf");

setShowtoolbar(fasle)属性不起作用enter image description here

我想在我的pdf文档中隐藏此工具栏

1 个答案:

答案 0 :(得分:4)

您应首先加载文件,然后setShowToolbar加载为

axAcroPDF1.LoadFile(@"C:\Users\Chinna\Desktop\Sample.pdf");
axAcroPDF1.src = @"C:\Users\Chinna\Desktop\Sample.pdf";
axAcroPDF1.setShowToolbar(false);
axAcroPDF1.Show();