如何通过 WPF 查看 PDF 文件?

Nut*_*pon -1 wpf

我想使用免费工具包或开源工具查看 PDF 文件,并且必须支持泰语(Unicode 字符)。谁能帮我吗 !?我现在陷入了深深的困境。

小智 5

尝试使用:

<Window x:Class="PDFViewer1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Grid> <WebBrowser Source="C:\User\Foo\Desktop\SomeFile.pdf" /> </Grid> </Window>