本文介绍了在C#中自动打开pdf文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的朋友们,
我期待在不选择anay文件的情况下自动在单独的窗口中打开pdf文件。该文件与bin\debug保存在同一目录中。
我的代码是:
Dear friends,
I am looking forward to open a pdf file in a separate window automatically without selecting anay file. The file is saved in the same directory as bin\debug.
My code is:
namespace Info
{
public partial class documentationForm : Form
{
public documentationForm()
{
InitializeComponent();
}
private void documentationForm_Load(object sender, EventArgs e)
{
axAcroPDF1.src = openFileDialog.FileName; //("info.pdf");
}
}
}
有没有办法手动添加文件名?
问候
AM
is there any way to add the file name manually?
regards
AM
推荐答案
private void OpenPdfInWebBrowser(string filePath)
{
if (!string.IsNullOrWhiteSpace(filePath))
{
yourwebBrowser1.Navigate(@filePath);
}
}
来源: []
祝你好运
Source : open Pdf document in C# in Window application - Stack Overflow[^]
Good luck
这篇关于在C#中自动打开pdf文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!