我正在尝试将本地pdf文件打开到webview
中,但出现空白的白色窗口。我尝试了不同的解决方案,但是没有用。我在DirectoryPath
中获得了项目父目录路径,然后用\
替换了/
,然后附加了我的文件夹和文件路径/Invoices/img.pdf.
private void PdfViewWindow_OnLoaded(object sender, RoutedEventArgs e)
{
string DirectoryPath = Directory.GetParent(Directory.GetCurrentDirectory()).Parent?.FullName;
string dp = DirectoryPath.Replace(@"\" , "/");
PdfWebView.Navigate(@"file:///" + dp + @"/Invoices/img.pdf");
}