有什么办法可以在点击按钮后自动弹出一个PDF

解决方案 »

  1.   

    process.start打开文件
    PDF浏览器
    在工具箱中添加Adobe提供的ActiveX控件。  
    string fileName = MyOpenFileDialog();  
    AxAcroPDFLib.AxAcroPDF axAcroPDF = new AxAcroPDFLib.AxAcroPDF();  
    axAcroPDF.Location = new System.Drawing.Point(0, 24);  
    axAcroPDF.Size = new System.Drawing.Size(292, 242);  
    axAcroPDF.Dock = DockStyle.Fill;  
    Controls.Add(axAcroPDF);  
    axAcroPDF.LoadFile(fileName);  
      

  2.   

    请问添加了Adobe PDF控件后怎么用
      

  3.   

    用這些產品吧,PDF類型通殺http://www.tallcomponents.com/my blog
    http://ufo-crackerx.blog.163.com/
      

  4.   

    请问PDFkit.NET怎么用呢?可以提示具体点吗?