从远程 URL 使用 Windows Form C# 查看 PDF 文件

View PDF File using Windows Form C# from Remote URL

我正在寻找解决方案,我想从远程服务器/url.

查看 windows 表单 C# 上的 pdf 文件

这可行吗?

看看这个。我正在使用 DevExpress 的 PDF Viewer 控件在应用程序中显示 PDF 文档。

using System.Net;

string Url = "YOUR_URL";
using(WebClient client = new WebClient()) {
    using(MemoryStream ms = new MemoryStream(client.DownloadData(Url))) {
        pdfViewer1.LoadDocument(ms);
    }
}

在使用 windows 的同时,您应该使用本机 PDF 引擎获得最一致的支持,从 Windows 7(但作为 EOL 贬值)到 11 是 MSEdge,这可以集成到 WebView 2

查看入门和示例代码的最佳位置是

https://docs.microsoft.com/en-us/microsoft-edge/webview2/code-samples-links#sample-code-for-get-started-guides

github 位置是

https://github.com/MicrosoftEdge/WebView2Samples